aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/org
diff options
context:
space:
mode:
authorPaul Eggert2019-11-11 10:30:13 -0800
committerPaul Eggert2019-11-11 10:32:53 -0800
commit6b4a97c1c78f39ce890d100acceceb652d14e20d (patch)
tree9d9f8347a952226adcd73680ed89c5679d6e5326 /lisp/org
parent269796288a43520a1dcc481337af472d086faaa4 (diff)
downloademacs-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.el12
-rw-r--r--lisp/org/org-agenda.el2
-rw-r--r--lisp/org/ox-latex.el2
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.
59This will typically be 'lua-mode." 59This 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.
288If RESULT-TYPE equals 'output then return standard output as a 288If RESULT-TYPE equals `output' then return standard output as a
289string. If RESULT-TYPE equals 'value then return the value of the 289string. If RESULT-TYPE equals `value' then return the value of the
290last statement in BODY, as elisp." 290last 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.
320If RESULT-TYPE equals 'output then return standard output as a 320If RESULT-TYPE equals `output' then return standard output as a
321string. If RESULT-TYPE equals 'value then return the value of the 321string. If RESULT-TYPE equals `value' then return the value of the
322last statement in BODY, as elisp." 322last 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."
3920the header at `org-hd-marker' is blocked according to 3920the 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
3923text property `org-todo-blocked' to 'invisible, otherwise set it 3923text property `org-todo-blocked' to `invisible', otherwise set it
3924to t." 3924to 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.
385You are responsible for ensuring that the value is a valid LaTeX 385You 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
387appear elsewhere in your document. (Keys may contain letters, 387appear elsewhere in your document. (Keys may contain letters,
388numbers, and the following punctuation: '_' '.' '-' ':'.) There 388numbers, and the following punctuation: `_' `.' `-' `:'.) There
389are no such limitations on CUSTOM_ID and NAME when this variable 389are no such limitations on CUSTOM_ID and NAME when this variable
390is nil. 390is nil.
391 391