summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2021-08-17 15:40:05 +0300
committerEli Zaretskii <eliz@gnu.org>2021-08-17 15:40:05 +0300
commitb960e1aea27a9fcc7c6fe0c315cfb9cd0e8025aa (patch)
tree5f249c60ddbf80258d972049eaa98cd3f3454c17
parent5f47d17d33948e3802843c3552be544e7c8e5cf1 (diff)
downloademacs-b960e1aea27a9fcc7c6fe0c315cfb9cd0e8025aa.tar.gz
; Fix a comment in a recent commit.
* lisp/help-mode.el (help-mode-syntax-table): Fix punctuation in a comment.
-rw-r--r--lisp/help-mode.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/help-mode.el b/lisp/help-mode.el
index b53d00d0fb8..87f26651e01 100644
--- a/lisp/help-mode.el
+++ b/lisp/help-mode.el
@@ -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)