branch: externals/org commit 0681babab4f4c19cc307c2a0b3a33420ded95695 Author: Kyle Meyer <k...@kyleam.com> Commit: Kyle Meyer <k...@kyleam.com>
Fix recent doc string quoting issues * lisp/org-agenda.el (org-agenda-show-outline-path): * lisp/org.el (org-display-outline-path): Surround symbols with `...' rather than using leading quote. See 6013cb161 (Fix doc string quoting problems with ', 2022-07-25) for a more detailed explanation. --- lisp/org-agenda.el | 2 +- lisp/org.el | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/org-agenda.el b/lisp/org-agenda.el index 5a22d6a8f5..7a2ec4036c 100644 --- a/lisp/org-agenda.el +++ b/lisp/org-agenda.el @@ -1070,7 +1070,7 @@ current item's tree, in an indirect buffer." (defcustom org-agenda-show-outline-path t "Non-nil means show outline path in echo area after line motion. -If set to 'title, show outline path with prepended document +If set to `title', show outline path with prepended document title. Fallback to file name is no title is present." :group 'org-agenda-startup :type '(choice diff --git a/lisp/org.el b/lisp/org.el index 9e5b5e8aad..ea9db49fb6 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -7440,7 +7440,7 @@ Returns nil if there are no #+TITLE property." (defun org-display-outline-path (&optional file-or-title current separator just-return-string) "Display the current outline path in the echo area. -If FILE-OR-TITLE is 'title, prepend outline with file title. If +If FILE-OR-TITLE is `title', prepend outline with file title. If it is non-nil or title is not present in document, prepend outline path with the file name. If CURRENT is non-nil, append the current heading to the output.