浏览代码

Merge branch 'maint'

Kyle Meyer 7 年之前
父节点
当前提交
47908228e7
共有 13 个文件被更改,包括 19 次插入20 次删除
  1. 2 2
      doc/org.texi
  2. 1 1
      etc/ORG-NEWS
  3. 1 1
      lisp/ob-calc.el
  4. 3 3
      lisp/ob-core.el
  5. 1 1
      lisp/ob-org.el
  6. 1 1
      lisp/ob-picolisp.el
  7. 1 1
      lisp/org-clock.el
  8. 3 3
      lisp/org-eww.el
  9. 1 1
      lisp/org-protocol.el
  10. 1 1
      lisp/ox-html.el
  11. 1 1
      lisp/ox-latex.el
  12. 2 3
      lisp/ox-odt.el
  13. 1 1
      lisp/ox-texinfo.el

+ 2 - 2
doc/org.texi

@@ -6733,7 +6733,7 @@ applying it to another one.
 @vindex org-clock-idle-time
 @vindex org-clock-idle-time
 By customizing the variable @code{org-clock-idle-time} to some integer, such
 By customizing the variable @code{org-clock-idle-time} to some integer, such
 as 10 or 15, Emacs can alert you when you get back to your computer after
 as 10 or 15, Emacs can alert you when you get back to your computer after
-being idle for that many minutes@footnote{On computers using Mac OS X,
+being idle for that many minutes@footnote{On computers using macOS,
 idleness is based on actual user idleness, not just Emacs' idle time.  For
 idleness is based on actual user idleness, not just Emacs' idle time.  For
 X11, you can install a utility program @file{x11idle.c}, available in the
 X11, you can install a utility program @file{x11idle.c}, available in the
 @code{contrib/scripts} directory of the Org git distribution, or install the
 @code{contrib/scripts} directory of the Org git distribution, or install the
@@ -13058,7 +13058,7 @@ of these examples works:
 
 
 @subsubheading Embedding clickable images
 @subsubheading Embedding clickable images
 For clickable images, provide a link whose description is another link to an
 For clickable images, provide a link whose description is another link to an
-image file.  For example, to embed a image @file{org-mode-unicorn.png} which
+image file.  For example, to embed an image @file{org-mode-unicorn.png} which
 when clicked jumps to @uref{https://orgmode.org} website, do the following
 when clicked jumps to @uref{https://orgmode.org} website, do the following
 
 
 @example
 @example

+ 1 - 1
etc/ORG-NEWS

@@ -387,7 +387,7 @@ directories in published site-maps.
 **** Scheme: support for tables
 **** Scheme: support for tables
 **** Scheme: new variable: ~org-babel-scheme-null-to~
 **** Scheme: new variable: ~org-babel-scheme-null-to~
 
 
-This new custom option allows to use a empty list or null symbol to
+This new custom option allows you to use an empty list or null symbol to
 format the table output, initially assigned to ~hlines~.
 format the table output, initially assigned to ~hlines~.
 
 
 **** Scheme: new header ~:prologue~
 **** Scheme: new header ~:prologue~

+ 1 - 1
lisp/ob-calc.el

@@ -37,7 +37,7 @@
 (declare-function org-trim "org" (s &optional keep-lead))
 (declare-function org-trim "org" (s &optional keep-lead))
 
 
 (defvar org-babel-default-header-args:calc nil
 (defvar org-babel-default-header-args:calc nil
-  "Default arguments for evaluating an calc source block.")
+  "Default arguments for evaluating a calc source block.")
 
 
 (defun org-babel-expand-body:calc (body _params)
 (defun org-babel-expand-body:calc (body _params)
   "Expand BODY according to PARAMS, return the expanded body." body)
   "Expand BODY according to PARAMS, return the expanded body." body)

+ 3 - 3
lisp/ob-core.el

@@ -360,7 +360,7 @@ a window into the `org-babel-get-src-block-info' function."
 ;;;###autoload
 ;;;###autoload
 (defun org-babel-expand-src-block-maybe ()
 (defun org-babel-expand-src-block-maybe ()
   "Conditionally expand a source block.
   "Conditionally expand a source block.
-Detect if this is context for a org-babel src-block and if so
+Detect if this is context for an org-babel src-block and if so
 then run `org-babel-expand-src-block'."
 then run `org-babel-expand-src-block'."
   (interactive)
   (interactive)
   (org-babel-when-in-src-block
   (org-babel-when-in-src-block
@@ -369,7 +369,7 @@ then run `org-babel-expand-src-block'."
 ;;;###autoload
 ;;;###autoload
 (defun org-babel-load-in-session-maybe ()
 (defun org-babel-load-in-session-maybe ()
   "Conditionally load a source block in a session.
   "Conditionally load a source block in a session.
-Detect if this is context for a org-babel src-block and if so
+Detect if this is context for an org-babel src-block and if so
 then run `org-babel-load-in-session'."
 then run `org-babel-load-in-session'."
   (interactive)
   (interactive)
   (org-babel-when-in-src-block
   (org-babel-when-in-src-block
@@ -380,7 +380,7 @@ then run `org-babel-load-in-session'."
 ;;;###autoload
 ;;;###autoload
 (defun org-babel-pop-to-session-maybe ()
 (defun org-babel-pop-to-session-maybe ()
   "Conditionally pop to a session.
   "Conditionally pop to a session.
-Detect if this is context for a org-babel src-block and if so
+Detect if this is context for an org-babel src-block and if so
 then run `org-babel-switch-to-session'."
 then run `org-babel-switch-to-session'."
   (interactive)
   (interactive)
   (org-babel-when-in-src-block
   (org-babel-when-in-src-block

+ 1 - 1
lisp/ob-org.el

@@ -34,7 +34,7 @@
 
 
 (defvar org-babel-default-header-args:org
 (defvar org-babel-default-header-args:org
   '((:results . "raw silent") (:exports . "code"))
   '((:results . "raw silent") (:exports . "code"))
-  "Default arguments for evaluating a org source block.")
+  "Default arguments for evaluating an org source block.")
 
 
 (defvar org-babel-org-default-header
 (defvar org-babel-org-default-header
   "#+TITLE: default empty header\n"
   "#+TITLE: default empty header\n"

+ 1 - 1
lisp/ob-picolisp.el

@@ -35,7 +35,7 @@
 ;; (http://picolisp.com/5000/-2.html). PicoLisp is included in some
 ;; (http://picolisp.com/5000/-2.html). PicoLisp is included in some
 ;; GNU/Linux Distributions, and can be downloaded here:
 ;; GNU/Linux Distributions, and can be downloaded here:
 ;; http://software-lab.de/down.html.  It ships with a picolisp-mode and
 ;; http://software-lab.de/down.html.  It ships with a picolisp-mode and
-;; a inferior-picolisp-mode for Emacs (to be found in the /lib/el/
+;; an inferior-picolisp-mode for Emacs (to be found in the /lib/el/
 ;; directory).
 ;; directory).
 
 
 ;; Although it might seem more natural to use Emacs Lisp for most
 ;; Although it might seem more natural to use Emacs Lisp for most

+ 1 - 1
lisp/org-clock.el

@@ -1366,7 +1366,7 @@ the default behavior."
 ;;;###autoload
 ;;;###autoload
 (defun org-clock-in-last (&optional arg)
 (defun org-clock-in-last (&optional arg)
   "Clock in the last closed clocked item.
   "Clock in the last closed clocked item.
-When already clocking in, send an warning.
+When already clocking in, send a warning.
 With a universal prefix argument, select the task you want to
 With a universal prefix argument, select the task you want to
 clock in from the last clocked in tasks.
 clock in from the last clocked in tasks.
 With two universal prefix arguments, start clocking using the
 With two universal prefix arguments, start clocking using the

+ 3 - 3
lisp/org-eww.el

@@ -25,9 +25,9 @@
 ;;; Commentary:
 ;;; Commentary:
 
 
 ;; When this module is active `org-store-link' (often on key C-c l) in
 ;; When this module is active `org-store-link' (often on key C-c l) in
-;; a eww buffer stores a link to the current url of the eww buffer.
+;; an EWW buffer stores a link to the current url of the eww buffer.
 
 
-;; In an eww buffer function `org-eww-copy-for-org-mode' kills either
+;; In an EWW buffer function `org-eww-copy-for-org-mode' kills either
 ;; a region or the whole buffer if no region is set and transforms the
 ;; a region or the whole buffer if no region is set and transforms the
 ;; text on the fly so that it can be pasted into an Org buffer with
 ;; text on the fly so that it can be pasted into an Org buffer with
 ;; hot links.
 ;; hot links.
@@ -58,7 +58,7 @@
 ;; Store Org-link in eww-mode buffer
 ;; Store Org-link in eww-mode buffer
 (org-link-set-parameters "eww" :follow #'eww :store #'org-eww-store-link)
 (org-link-set-parameters "eww" :follow #'eww :store #'org-eww-store-link)
 (defun org-eww-store-link ()
 (defun org-eww-store-link ()
-  "Store a link to the url of a Eww buffer."
+  "Store a link to the url of an EWW buffer."
   (when (eq major-mode 'eww-mode)
   (when (eq major-mode 'eww-mode)
     (org-store-link-props
     (org-store-link-props
      :type "eww"
      :type "eww"

+ 1 - 1
lisp/org-protocol.el

@@ -663,7 +663,7 @@ to deal with new-style links.")
 ;;; Org specific functions:
 ;;; Org specific functions:
 
 
 (defun org-protocol-create-for-org ()
 (defun org-protocol-create-for-org ()
-  "Create a Org protocol project for the current file's project.
+  "Create an Org protocol project for the current file's project.
 The visited file needs to be part of a publishing project in
 The visited file needs to be part of a publishing project in
 `org-publish-project-alist' for this to work.  The function
 `org-publish-project-alist' for this to work.  The function
 delegates most of the work to `org-protocol-create'."
 delegates most of the work to `org-protocol-create'."

+ 1 - 1
lisp/ox-html.el

@@ -2697,7 +2697,7 @@ holding contextual information."
 
 
 (defun org-html-format-inlinetask-default-function
 (defun org-html-format-inlinetask-default-function
   (todo todo-type priority text tags contents info)
   (todo todo-type priority text tags contents info)
-  "Default format function for a inlinetasks.
+  "Default format function for inlinetasks.
 See `org-html-format-inlinetask-function' for details."
 See `org-html-format-inlinetask-function' for details."
   (format "<div class=\"inlinetask\">\n<b>%s</b>%s\n%s</div>"
   (format "<div class=\"inlinetask\">\n<b>%s</b>%s\n%s</div>"
 	  (org-html-format-headline-default-function
 	  (org-html-format-headline-default-function

+ 1 - 1
lisp/ox-latex.el

@@ -2124,7 +2124,7 @@ holding contextual information."
 
 
 (defun org-latex-format-inlinetask-default-function
 (defun org-latex-format-inlinetask-default-function
     (todo _todo-type priority title tags contents _info)
     (todo _todo-type priority title tags contents _info)
-  "Default format function for a inlinetasks.
+  "Default format function for inlinetasks.
 See `org-latex-format-inlinetask-function' for details."
 See `org-latex-format-inlinetask-function' for details."
   (let ((full-title
   (let ((full-title
 	 (concat (when todo (format "\\textbf{\\textsf{\\textsc{%s}}} " todo))
 	 (concat (when todo (format "\\textbf{\\textsf{\\textsc{%s}}} " todo))

+ 2 - 3
lisp/ox-odt.el

@@ -600,8 +600,7 @@ allow document of a given class (irrespective of its source
 format) to be converted to any of the export formats associated
 format) to be converted to any of the export formats associated
 with that class.
 with that class.
 
 
-See default setting of this variable for an typical
-configuration."
+See default setting of this variable for a typical configuration."
   :group 'org-export-odt
   :group 'org-export-odt
   :version "24.1"
   :version "24.1"
   :type
   :type
@@ -1938,7 +1937,7 @@ holding contextual information."
 
 
 (defun org-odt-format-inlinetask-default-function
 (defun org-odt-format-inlinetask-default-function
   (todo todo-type priority name tags contents)
   (todo todo-type priority name tags contents)
-  "Default format function for a inlinetasks.
+  "Default format function for inlinetasks.
 See `org-odt-format-inlinetask-function' for details."
 See `org-odt-format-inlinetask-function' for details."
   (format "\n<text:p text:style-name=\"%s\">%s</text:p>"
   (format "\n<text:p text:style-name=\"%s\">%s</text:p>"
 	  "Text_20_body"
 	  "Text_20_body"

+ 1 - 1
lisp/ox-texinfo.el

@@ -949,7 +949,7 @@ holding contextual information."
 
 
 (defun org-texinfo-format-inlinetask-default-function
 (defun org-texinfo-format-inlinetask-default-function
   (todo _todo-type priority title tags contents)
   (todo _todo-type priority title tags contents)
-  "Default format function for a inlinetasks.
+  "Default format function for inlinetasks.
 See `org-texinfo-format-inlinetask-function' for details."
 See `org-texinfo-format-inlinetask-function' for details."
   (let ((full-title
   (let ((full-title
 	 (concat (when todo (format "@strong{%s} " todo))
 	 (concat (when todo (format "@strong{%s} " todo))