summaryrefslogtreecommitdiff
path: root/lisp/help-mode.el
diff options
context:
space:
mode:
authorNick Roberts <nickrob@snap.net.nz>2005-12-20 09:02:23 +0000
committerNick Roberts <nickrob@snap.net.nz>2005-12-20 09:02:23 +0000
commitd74f241f381d6749760f0a7f4248dbd337c7ecb8 (patch)
treefb5e90e2c4b452f0f3fd1c184e7131bc9bb3ff88 /lisp/help-mode.el
parent84a00de9cfe38cfabc1c0a82e83e81cc1342d961 (diff)
downloademacs-d74f241f381d6749760f0a7f4248dbd337c7ecb8.tar.gz
(help-customize-variable, help-customize-face):
Don't pop help-xref-stack as help-follow no longer pushes anything on to it.
Diffstat (limited to 'lisp/help-mode.el')
-rw-r--r--lisp/help-mode.el4
1 files changed, 0 insertions, 4 deletions
diff --git a/lisp/help-mode.el b/lisp/help-mode.el
index b7cea179aea..9941f0604bd 100644
--- a/lisp/help-mode.el
+++ b/lisp/help-mode.el
@@ -136,16 +136,12 @@ The format is (FUNCTION ARGS...).")
(define-button-type 'help-customize-variable
:supertype 'help-xref
'help-function (lambda (v)
- (if help-xref-stack
- (pop help-xref-stack))
(customize-variable v))
'help-echo (purecopy "mouse-2, RET: customize variable"))
(define-button-type 'help-customize-face
:supertype 'help-xref
'help-function (lambda (v)
- (if help-xref-stack
- (pop help-xref-stack))
(customize-face v))
'help-echo (purecopy "mouse-2, RET: customize face"))