emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master b960e1a: ; Fix a comment in a recent commit.


From: Eli Zaretskii
Subject: master b960e1a: ; Fix a comment in a recent commit.
Date: Tue, 17 Aug 2021 08:40:51 -0400 (EDT)

branch: master
commit b960e1aea27a9fcc7c6fe0c315cfb9cd0e8025aa
Author: Eli Zaretskii <eliz@gnu.org>
Commit: Eli Zaretskii <eliz@gnu.org>

    ; 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 b53d00d..87f2665 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)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]