emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/org d947988722 4/4: * lisp/ob-core.el: Fix docstring qu


From: ELPA Syncer
Subject: [elpa] externals/org d947988722 4/4: * lisp/ob-core.el: Fix docstring quote usage
Date: Thu, 14 Jul 2022 09:57:59 -0400 (EDT)

branch: externals/org
commit d9479887226ad79a1a8de739e7be0fc1fffec536
Author: Nicholas Vollmer <iarchivedmywholelife@gmail.com>
Commit: Ihor Radchenko <yantar92@gmail.com>

    * lisp/ob-core.el: Fix docstring quote usage
    
    (org-babel-default-header-args): escape syntactic single quote in docstring
    (org-babel-result-to-file): escape syntactic single quote in docstring
---
 lisp/ob-core.el | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/lisp/ob-core.el b/lisp/ob-core.el
index f1a98b7d0f..ac9af5d243 100644
--- a/lisp/ob-core.el
+++ b/lisp/ob-core.el
@@ -487,7 +487,7 @@ evaluates to a string.
 A closure is evaluated when the source block is being
 evaluated (e.g. during execution or export), with point at the
 source block.  It is not possible to use an arbitrary function
-symbol (e.g. 'some-func), since org uses lexical binding.  To
+symbol (e.g. \\='some-func), since org uses lexical binding.  To
 achieve the same functionality, call the function within a
 closure (e.g. (lambda () (some-func))).
 
@@ -514,7 +514,7 @@ functionality is also supported for default header 
arguments by
 providing the header argument multiple times in the alist.  For
 example:
 
-'((:var . \"foo=\\\"bar\\\"\")
+\\='((:var . \"foo=\\\"bar\\\"\")
   (:var . \"bar=\\\"foo\\\"\"))")
 
 (put 'org-babel-default-header-args 'safe-local-variable
@@ -2627,7 +2627,7 @@ in the buffer."
 If the `default-directory' is different from the containing
 file's directory then expand relative links.
 
-If the optional TYPE is passed as 'attachment` and the path is a
+If the optional TYPE is passed as \\='attachment and the path is a
 descendant of the DEFAULT-DIRECTORY, the generated link will be
 specified as an an \"attachment:\" style link."
   (when (stringp result)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]