mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-16 17:24:23 +00:00
; 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:
parent
5f47d17d33
commit
b960e1aea2
1 changed files with 2 additions and 2 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue