]> git.eshelyaron.com Git - emacs.git/commitdiff
; Fix a comment in a recent commit.
authorEli Zaretskii <eliz@gnu.org>
Tue, 17 Aug 2021 12:40:05 +0000 (15:40 +0300)
committerEli Zaretskii <eliz@gnu.org>
Tue, 17 Aug 2021 12:40:05 +0000 (15:40 +0300)
* lisp/help-mode.el (help-mode-syntax-table): Fix punctuation in a
comment.

lisp/help-mode.el

index b53d00d0fb8ec1bb147b9c6622e43db804822a20..87f26651e014b96935844a0dc4a2abaded4304a7 100644 (file)
@@ -142,8 +142,8 @@ The format is (FUNCTION ARGS...).")
 
 (defvar help-mode-syntax-table
   (let ((table (make-syntax-table emacs-lisp-mode-syntax-table)))
-    ;; treat single quotes as parens so that forward-sexp does not
-    ;; break when quoted string contains punctuation
+    ;; Treat single quotes as parens so that forward-sexp does not
+    ;; break when a quoted string contains punctuation.
     (modify-syntax-entry ?‘ "(’  " table)
     (modify-syntax-entry ?’ ")‘  " table)
     table)