aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann2000-02-22 16:57:09 +0000
committerGerd Moellmann2000-02-22 16:57:09 +0000
commit14cc00adb2531396212a43a5fa4cea35366ae033 (patch)
tree7fd694d1bf85e412c10f13b97174f2acc083f8b2
parent47da5efad17e54f35d53195e05c326ec26eee351 (diff)
downloademacs-14cc00adb2531396212a43a5fa4cea35366ae033.tar.gz
emacs-14cc00adb2531396212a43a5fa4cea35366ae033.zip
(describe-variable): Set syntax table to
emacs-lisp-mode-syntax-table when moving forward over the symbol's name.
-rw-r--r--lisp/ChangeLog6
-rw-r--r--lisp/help.el1
2 files changed, 7 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 56a9a08c244..e16d7173f60 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,9 @@
12000-02-22 Gerd Moellmann <gerd@gnu.org>
2
3 * help.el (describe-variable): Set syntax table to
4 emacs-lisp-mode-syntax-table when moving forward over the
5 symbol's name.
6
12000-02-22 Dave Love <fx@gnu.org> 72000-02-22 Dave Love <fx@gnu.org>
2 8
3 * xt-mouse.el: Doc fixes. 9 * xt-mouse.el: Doc fixes.
diff --git a/lisp/help.el b/lisp/help.el
index 4beca0a8ecd..672933d42f7 100644
--- a/lisp/help.el
+++ b/lisp/help.el
@@ -790,6 +790,7 @@ Returns the documentation as a string, also."
790 (set-buffer standard-output) 790 (set-buffer standard-output)
791 (if (> (count-lines (point-min) (point-max)) 10) 791 (if (> (count-lines (point-min) (point-max)) 10)
792 (progn 792 (progn
793 (set-syntax-table emacs-lisp-mode-syntax-table)
793 (goto-char (point-min)) 794 (goto-char (point-min))
794 (if valvoid 795 (if valvoid
795 (forward-line 1) 796 (forward-line 1)