Backport commit ac16149 from Emacs

Fix docstring quoting problems with ‘ '’
ac16149ba470ae8a625d42a61adbb6e84254c675
Paul Eggert
Tue Nov 17 15:29:35 2015 -0800
This commit is contained in:
Paul Eggert 2015-11-17 15:28:50 -08:00 committed by Kyle Meyer
parent d452176885
commit 31459201ae
2 changed files with 4 additions and 4 deletions

View File

@ -1492,7 +1492,7 @@ specified in the properties of the current outline entry."
ALTS is a cons of two character options where each option may be ALTS is a cons of two character options where each option may be
either the numeric code of a single character or a list of either the numeric code of a single character or a list of
character alternatives. For example to split on balanced character alternatives. For example to split on balanced
instances of \"[ \t]:\" set ALTS to '((32 9) . 58)." instances of \"[ \t]:\" set ALTS to ((32 9) . 58)."
(let* ((matches (lambda (ch spec) (if (listp spec) (member ch spec) (equal spec ch)))) (let* ((matches (lambda (ch spec) (if (listp spec) (member ch spec) (equal spec ch))))
(matched (lambda (ch last) (matched (lambda (ch last)
(if (consp alts) (if (consp alts)
@ -1604,7 +1604,7 @@ shown below.
;; row and column names ;; row and column names
(defun org-babel-del-hlines (table) (defun org-babel-del-hlines (table)
"Remove all `hlines' from TABLE." "Remove all `hline's from TABLE."
(remq 'hline table)) (remq 'hline table))
(defun org-babel-get-colnames (table) (defun org-babel-get-colnames (table)

View File

@ -7463,8 +7463,8 @@ returns to the original buffer in which the visibility is still
unchanged. After RET it will also jump to the location selected unchanged. After RET it will also jump to the location selected
in the indirect buffer and expose the headline hierarchy above. in the indirect buffer and expose the headline hierarchy above.
With a prefix argument, use the alternative interface: e.g. if With a prefix argument, use the alternative interface: e.g., if
`org-goto-interface' is 'outline use 'outline-path-completion." `org-goto-interface' is `outline' use `outline-path-completion'."
(interactive "P") (interactive "P")
(org-goto-map) (org-goto-map)
(let* ((org-refile-targets `((nil . (:maxlevel . ,org-goto-max-level)))) (let* ((org-refile-targets `((nil . (:maxlevel . ,org-goto-max-level))))