From b960e1aea27a9fcc7c6fe0c315cfb9cd0e8025aa Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Tue, 17 Aug 2021 15:40:05 +0300 Subject: [PATCH] ; Fix a comment in a recent commit. * lisp/help-mode.el (help-mode-syntax-table): Fix punctuation in a comment. --- lisp/help-mode.el | 4 ++-- 1 file 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) -- 2.39.5