diff options
author | Martin Rudalics <rudalics@gmx.at> | 2011-11-01 17:21:41 +0100 |
---|---|---|
committer | Martin Rudalics <rudalics@gmx.at> | 2011-11-01 17:21:41 +0100 |
commit | 4ee88440781304fc7003d51e363c3e3a5cc2e8fd (patch) | |
tree | 208d9e9e7f71484f03cc0dfa2ed981b94540eab3 /lisp/help.el | |
parent | 37dcccdd20fb23eaf947fd51787da84f6f18e425 (diff) | |
download | emacs-4ee88440781304fc7003d51e363c3e3a5cc2e8fd.tar.gz |
Remove unused variable temp-buffer-show-specifiers.
* window.c (temp_output_buffer_show): Don't use
Vtemp_buffer_show_specifiers.
(Vtemp_buffer_show_specifiers): Remove unused variable.
* help.el (with-help-window): Don't reference
temp-buffer-show-specifiers in doc-string.
Diffstat (limited to 'lisp/help.el')
-rw-r--r-- | lisp/help.el | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lisp/help.el b/lisp/help.el index bc3d863f357..506889c210e 100644 --- a/lisp/help.el +++ b/lisp/help.el @@ -1125,10 +1125,7 @@ HELP-WINDOW is the window used for displaying the help buffer." (defmacro with-help-window (buffer-name &rest body) "Display buffer with name BUFFER-NAME in a help window evaluating BODY. Select help window if the actual value of the user option -`help-window-select' says so. Return last value in BODY. - -You can specify where and how to show the buffer by binding the -variable `temp-buffer-show-specifiers' to an appropriate value." +`help-window-select' says so. Return last value in BODY." (declare (indent 1) (debug t)) `(progn ;; Make `help-window-point-marker' point nowhere. The only place |