From 14cc00adb2531396212a43a5fa4cea35366ae033 Mon Sep 17 00:00:00 2001 From: Gerd Moellmann Date: Tue, 22 Feb 2000 16:57:09 +0000 Subject: [PATCH 1/1] (describe-variable): Set syntax table to emacs-lisp-mode-syntax-table when moving forward over the symbol's name. --- lisp/ChangeLog | 6 ++++++ lisp/help.el | 1 + 2 files changed, 7 insertions(+) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 56a9a08c24..e16d7173f6 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,9 @@ +2000-02-22 Gerd Moellmann + + * 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 * xt-mouse.el: Doc fixes. diff --git a/lisp/help.el b/lisp/help.el index 4beca0a8ec..672933d42f 100644 --- a/lisp/help.el +++ b/lisp/help.el @@ -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) -- 2.39.2