summaryrefslogtreecommitdiff
path: root/lisp/org/org.el
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2021-09-12 19:51:06 +0300
committerEli Zaretskii <eliz@gnu.org>2021-09-12 19:51:06 +0300
commitff4de1bd88b8be4a7071884910ff601eb10fbad5 (patch)
treeb10b7a46bd23d9dea94fd7230491fed85b428c75 /lisp/org/org.el
parent1ccc31eff5b6993042cea7df565d6484984701c2 (diff)
downloademacs-ff4de1bd88b8be4a7071884910ff601eb10fbad5.tar.gz
emacs-ff4de1bd88b8be4a7071884910ff601eb10fbad5.tar.bz2
emacs-ff4de1bd88b8be4a7071884910ff601eb10fbad5.zip
Fix quoting style in Lisp comments
* lisp/textmodes/rst.el: * lisp/progmodes/elisp-mode.el (elisp--xref-find-definitions): * lisp/org/org.el: * lisp/org/org-list.el (org-list-to-generic): * lisp/org/org-compat.el: * lisp/hexl.el (hexl-ascii-region): * lisp/emacs-lisp/lisp-mode.el: * lisp/calendar/calendar.el: In comments, quote 'like this'.
Diffstat (limited to 'lisp/org/org.el')
-rw-r--r--lisp/org/org.el14
1 files changed, 7 insertions, 7 deletions
diff --git a/lisp/org/org.el b/lisp/org/org.el
index dc56948b533..d03676e3fb9 100644
--- a/lisp/org/org.el
+++ b/lisp/org/org.el
@@ -19651,15 +19651,15 @@ When BLOCK-REGEXP is non-nil, use this regexp to find blocks."
;; example-block) don't accept comments. Usual Emacs comment commands
;; cannot cope with those requirements. Therefore, Org replaces them.
-;; Org still relies on `comment-dwim', but cannot trust
-;; `comment-only-p'. So, `comment-region-function' and
-;; `uncomment-region-function' both point
-;; to `org-comment-or-uncomment-region'. Eventually,
-;; `org-insert-comment' takes care of insertion of comments at the
+;; Org still relies on 'comment-dwim', but cannot trust
+;; 'comment-only-p'. So, 'comment-region-function' and
+;; 'uncomment-region-function' both point
+;; to 'org-comment-or-uncomment-region'. Eventually,
+;; 'org-insert-comment' takes care of insertion of comments at the
;; beginning of line.
-;; `org-setup-comments-handling' install comments related variables
-;; during `org-mode' initialization.
+;; 'org-setup-comments-handling' install comments related variables
+;; during 'org-mode' initialization.
(defun org-setup-comments-handling ()
(interactive)