From: Eli Zaretskii Date: Tue, 17 Aug 2021 12:40:05 +0000 (+0300) Subject: ; Fix a comment in a recent commit. X-Git-Tag: emacs-28.0.90~1465 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b960e1aea27a9fcc7c6fe0c315cfb9cd0e8025aa;p=emacs.git ; Fix a comment in a recent commit. * lisp/help-mode.el (help-mode-syntax-table): Fix punctuation in a comment. --- 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)