]> git.eshelyaron.com Git - emacs.git/commitdiff
(help-customize-variable, help-customize-face):
authorNick Roberts <nickrob@snap.net.nz>
Tue, 20 Dec 2005 09:02:23 +0000 (09:02 +0000)
committerNick Roberts <nickrob@snap.net.nz>
Tue, 20 Dec 2005 09:02:23 +0000 (09:02 +0000)
Don't pop help-xref-stack as help-follow no longer pushes
anything on to it.

lisp/help-mode.el

index b7cea179aead826edec6d0f9e9a097a61f45034c..9941f0604bd640fc6c9c4f3202537b151ccdff81 100644 (file)
@@ -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"))