# HG changeset patch # User Nick Roberts # Date 1135069343 0 # Node ID c68ea88eaa16881daca5e7729df1ba1ff88c4d73 # Parent e9b77d66e78eda84e7f96ff186a9956e5e46b7aa (help-customize-variable, help-customize-face): Don't pop help-xref-stack as help-follow no longer pushes anything on to it. diff -r e9b77d66e78e -r c68ea88eaa16 lisp/help-mode.el --- a/lisp/help-mode.el Tue Dec 20 09:00:56 2005 +0000 +++ b/lisp/help-mode.el Tue Dec 20 09:02:23 2005 +0000 @@ -136,16 +136,12 @@ (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"))