mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-23 21:37:34 +00:00
(describe-variable): Set syntax table to
emacs-lisp-mode-syntax-table when moving forward over the symbol's name.
This commit is contained in:
parent
47da5efad1
commit
14cc00adb2
2 changed files with 7 additions and 0 deletions
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue