aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNick Roberts2005-12-20 09:02:23 +0000
committerNick Roberts2005-12-20 09:02:23 +0000
commitd74f241f381d6749760f0a7f4248dbd337c7ecb8 (patch)
treefb5e90e2c4b452f0f3fd1c184e7131bc9bb3ff88
parent84a00de9cfe38cfabc1c0a82e83e81cc1342d961 (diff)
downloademacs-d74f241f381d6749760f0a7f4248dbd337c7ecb8.tar.gz
emacs-d74f241f381d6749760f0a7f4248dbd337c7ecb8.zip
(help-customize-variable, help-customize-face):
Don't pop help-xref-stack as help-follow no longer pushes anything on to it.
-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...).")
136(define-button-type 'help-customize-variable 136(define-button-type 'help-customize-variable
137 :supertype 'help-xref 137 :supertype 'help-xref
138 'help-function (lambda (v) 138 'help-function (lambda (v)
139 (if help-xref-stack
140 (pop help-xref-stack))
141 (customize-variable v)) 139 (customize-variable v))
142 'help-echo (purecopy "mouse-2, RET: customize variable")) 140 'help-echo (purecopy "mouse-2, RET: customize variable"))
143 141
144(define-button-type 'help-customize-face 142(define-button-type 'help-customize-face
145 :supertype 'help-xref 143 :supertype 'help-xref
146 'help-function (lambda (v) 144 'help-function (lambda (v)
147 (if help-xref-stack
148 (pop help-xref-stack))
149 (customize-face v)) 145 (customize-face v))
150 'help-echo (purecopy "mouse-2, RET: customize face")) 146 'help-echo (purecopy "mouse-2, RET: customize face"))
151 147