; Fix a comment in a recent commit.

* lisp/help-mode.el (help-mode-syntax-table): Fix punctuation in a
comment.
This commit is contained in:
Eli Zaretskii 2021-08-17 15:40:05 +03:00
parent 5f47d17d33
commit b960e1aea2

View 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)