(describe-variable): Set syntax table to

emacs-lisp-mode-syntax-table when moving forward over the
symbol's name.
This commit is contained in:
Gerd Moellmann 2000-02-22 16:57:09 +00:00
parent 47da5efad1
commit 14cc00adb2
2 changed files with 7 additions and 0 deletions

View file

@ -1,3 +1,9 @@
2000-02-22 Gerd Moellmann <gerd@gnu.org>
* help.el (describe-variable): Set syntax table to
emacs-lisp-mode-syntax-table when moving forward over the
symbol's name.
2000-02-22 Dave Love <fx@gnu.org>
* xt-mouse.el: Doc fixes.

View file

@ -790,6 +790,7 @@ Returns the documentation as a string, also."
(set-buffer standard-output)
(if (> (count-lines (point-min) (point-max)) 10)
(progn
(set-syntax-table emacs-lisp-mode-syntax-table)
(goto-char (point-min))
(if valvoid
(forward-line 1)