diff options
author | Chong Yidong <cyd@stupidchicken.com> | 2009-03-30 01:15:08 +0000 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2009-03-30 01:15:08 +0000 |
commit | f4227998411f68332407fe2ca694a62ee7d3e17e (patch) | |
tree | 717ded3a9ef376f09cce16c010664d883084d3f9 /lisp/help-mode.el | |
parent | f1389359d0f7e7170d6b5fca7d3206136d836ac2 (diff) | |
download | emacs-f4227998411f68332407fe2ca694a62ee7d3e17e.tar.gz |
Fix last change.
Diffstat (limited to 'lisp/help-mode.el')
-rw-r--r-- | lisp/help-mode.el | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/lisp/help-mode.el b/lisp/help-mode.el index bbd1dfec131..91fb4f99257 100644 --- a/lisp/help-mode.el +++ b/lisp/help-mode.el @@ -358,10 +358,11 @@ restore it properly when going back." ;;;###autoload (defun help-buffer () - "Return a buffer for inserting help. -If `help-xref-following' is non-nil, this is the current buffer. -Otherwise, it is the buffer named *Help*. If no such buffer -currently exists, it is created." + "Return the name of a buffer for inserting help. +If `help-xref-following' is non-nil, this is the name of the +current buffer. +Otherwise, it is *Help*; if no buffer with that name currently +exists, it is created." (buffer-name ;for with-output-to-temp-buffer (if help-xref-following (current-buffer) |