From: Nick Roberts Date: Tue, 20 Dec 2005 09:02:23 +0000 (+0000) Subject: (help-customize-variable, help-customize-face): X-Git-Tag: emacs-pretest-22.0.90~5169 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d74f241f381d6749760f0a7f4248dbd337c7ecb8;p=emacs.git (help-customize-variable, help-customize-face): Don't pop help-xref-stack as help-follow no longer pushes anything on to it. --- 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"))