diff options
| -rw-r--r-- | lisp/ChangeLog | 6 | ||||
| -rw-r--r-- | lisp/help.el | 1 |
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 @@ | |||
| 1 | 2000-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 | |||
| 1 | 2000-02-22 Dave Love <fx@gnu.org> | 7 | 2000-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) |