diff options
| author | Paul Eggert | 2019-11-11 10:30:13 -0800 |
|---|---|---|
| committer | Paul Eggert | 2019-11-11 10:32:53 -0800 |
| commit | 6b4a97c1c78f39ce890d100acceceb652d14e20d (patch) | |
| tree | 9d9f8347a952226adcd73680ed89c5679d6e5326 /lisp/org | |
| parent | 269796288a43520a1dcc481337af472d086faaa4 (diff) | |
| download | emacs-6b4a97c1c78f39ce890d100acceceb652d14e20d.tar.gz emacs-6b4a97c1c78f39ce890d100acceceb652d14e20d.zip | |
Fix some quoting glitches in doc strings
Diffstat (limited to 'lisp/org')
| -rw-r--r-- | lisp/org/ob-lua.el | 12 | ||||
| -rw-r--r-- | lisp/org/org-agenda.el | 2 | ||||
| -rw-r--r-- | lisp/org/ox-latex.el | 2 |
3 files changed, 8 insertions, 8 deletions
diff --git a/lisp/org/ob-lua.el b/lisp/org/ob-lua.el index 9b152f29f4e..8712619ecc6 100644 --- a/lisp/org/ob-lua.el +++ b/lisp/org/ob-lua.el | |||
| @@ -56,7 +56,7 @@ | |||
| 56 | 56 | ||
| 57 | (defcustom org-babel-lua-mode 'lua-mode | 57 | (defcustom org-babel-lua-mode 'lua-mode |
| 58 | "Preferred lua mode for use in running lua interactively. | 58 | "Preferred lua mode for use in running lua interactively. |
| 59 | This will typically be 'lua-mode." | 59 | This will typically be `lua-mode'." |
| 60 | :group 'org-babel | 60 | :group 'org-babel |
| 61 | :version "26.1" | 61 | :version "26.1" |
| 62 | :package-version '(Org . "8.3") | 62 | :package-version '(Org . "8.3") |
| @@ -70,7 +70,7 @@ This will typically be 'lua-mode." | |||
| 70 | :type 'string) | 70 | :type 'string) |
| 71 | 71 | ||
| 72 | (defcustom org-babel-lua-None-to 'hline | 72 | (defcustom org-babel-lua-None-to 'hline |
| 73 | "Replace 'None' in lua tables with this before returning." | 73 | "Replace `None' in lua tables with this before returning." |
| 74 | :group 'org-babel | 74 | :group 'org-babel |
| 75 | :version "26.1" | 75 | :version "26.1" |
| 76 | :package-version '(Org . "8.3") | 76 | :package-version '(Org . "8.3") |
| @@ -285,8 +285,8 @@ fd:close()") | |||
| 285 | (defun org-babel-lua-evaluate-external-process | 285 | (defun org-babel-lua-evaluate-external-process |
| 286 | (body &optional result-type result-params preamble) | 286 | (body &optional result-type result-params preamble) |
| 287 | "Evaluate BODY in external lua process. | 287 | "Evaluate BODY in external lua process. |
| 288 | If RESULT-TYPE equals 'output then return standard output as a | 288 | If RESULT-TYPE equals `output' then return standard output as a |
| 289 | string. If RESULT-TYPE equals 'value then return the value of the | 289 | string. If RESULT-TYPE equals `value' then return the value of the |
| 290 | last statement in BODY, as elisp." | 290 | last statement in BODY, as elisp." |
| 291 | (let ((raw | 291 | (let ((raw |
| 292 | (pcase result-type | 292 | (pcase result-type |
| @@ -317,8 +317,8 @@ last statement in BODY, as elisp." | |||
| 317 | (defun org-babel-lua-evaluate-session | 317 | (defun org-babel-lua-evaluate-session |
| 318 | (session body &optional result-type result-params) | 318 | (session body &optional result-type result-params) |
| 319 | "Pass BODY to the Lua process in SESSION. | 319 | "Pass BODY to the Lua process in SESSION. |
| 320 | If RESULT-TYPE equals 'output then return standard output as a | 320 | If RESULT-TYPE equals `output' then return standard output as a |
| 321 | string. If RESULT-TYPE equals 'value then return the value of the | 321 | string. If RESULT-TYPE equals `value' then return the value of the |
| 322 | last statement in BODY, as elisp." | 322 | last statement in BODY, as elisp." |
| 323 | (let* ((send-wait (lambda () (comint-send-input nil t) (sleep-for 0 5))) | 323 | (let* ((send-wait (lambda () (comint-send-input nil t) (sleep-for 0 5))) |
| 324 | (dump-last-value | 324 | (dump-last-value |
diff --git a/lisp/org/org-agenda.el b/lisp/org/org-agenda.el index 66c3d965e09..6870b780fa2 100644 --- a/lisp/org/org-agenda.el +++ b/lisp/org/org-agenda.el | |||
| @@ -3920,7 +3920,7 @@ dimming them." | |||
| 3920 | the header at `org-hd-marker' is blocked according to | 3920 | the header at `org-hd-marker' is blocked according to |
| 3921 | `org-entry-blocked-p', then if `org-agenda-dim-blocked-tasks' is | 3921 | `org-entry-blocked-p', then if `org-agenda-dim-blocked-tasks' is |
| 3922 | 'invisible and the header is not blocked by checkboxes, set the | 3922 | 'invisible and the header is not blocked by checkboxes, set the |
| 3923 | text property `org-todo-blocked' to 'invisible, otherwise set it | 3923 | text property `org-todo-blocked' to `invisible', otherwise set it |
| 3924 | to t." | 3924 | to t." |
| 3925 | (when (get-text-property 0 'todo-state entry) | 3925 | (when (get-text-property 0 'todo-state entry) |
| 3926 | (let ((entry-marker (get-text-property 0 'org-hd-marker entry)) | 3926 | (let ((entry-marker (get-text-property 0 'org-hd-marker entry)) |
diff --git a/lisp/org/ox-latex.el b/lisp/org/ox-latex.el index e617317a062..1ec835a47e9 100644 --- a/lisp/org/ox-latex.el +++ b/lisp/org/ox-latex.el | |||
| @@ -385,7 +385,7 @@ variable is non-nil, Org passes their value to \\label unchanged. | |||
| 385 | You are responsible for ensuring that the value is a valid LaTeX | 385 | You are responsible for ensuring that the value is a valid LaTeX |
| 386 | \\label key, and that no other \\label commands with the same key | 386 | \\label key, and that no other \\label commands with the same key |
| 387 | appear elsewhere in your document. (Keys may contain letters, | 387 | appear elsewhere in your document. (Keys may contain letters, |
| 388 | numbers, and the following punctuation: '_' '.' '-' ':'.) There | 388 | numbers, and the following punctuation: `_' `.' `-' `:'.) There |
| 389 | are no such limitations on CUSTOM_ID and NAME when this variable | 389 | are no such limitations on CUSTOM_ID and NAME when this variable |
| 390 | is nil. | 390 | is nil. |
| 391 | 391 | ||