diff options
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/help-fns.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/help-fns.el b/lisp/help-fns.el index e6cc07b471d..5da575aa8d1 100644 --- a/lisp/help-fns.el +++ b/lisp/help-fns.el @@ -959,9 +959,9 @@ Returns a list of the form (REAL-FUNCTION DEF ALIASED REAL-DEF)." ;;;###autoload (defun describe-function-1 (function) - (let ((pt1 (with-current-buffer (help-buffer) (point)))) + (let ((pt1 (with-current-buffer standard-output (point)))) (help-fns-function-description-header function) - (with-current-buffer (help-buffer) + (with-current-buffer standard-output (let ((inhibit-read-only t)) (fill-region-as-paragraph (save-excursion |