diff options
Diffstat (limited to 'lisp/help-mode.el')
-rw-r--r-- | lisp/help-mode.el | 4 |
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")) |