aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDave Love1998-09-10 22:51:33 +0000
committerDave Love1998-09-10 22:51:33 +0000
commit451f7df83b0978bedd26c2d17b7deffc26809251 (patch)
treed283d39b26a5caae9a4abbf3cd3fc564ce59effc /src
parentb524ce9fc531a9d66930f83ec5d6fa504a327c7b (diff)
downloademacs-451f7df83b0978bedd26c2d17b7deffc26809251.tar.gz
emacs-451f7df83b0978bedd26c2d17b7deffc26809251.zip
(Fwith_output_to_temp_buffer): Doc fix.
Diffstat (limited to 'src')
-rw-r--r--src/print.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/print.c b/src/print.c
index 499e2e46738..ec340e2c91d 100644
--- a/src/print.c
+++ b/src/print.c
@@ -755,10 +755,13 @@ DEFUN ("with-output-to-temp-buffer", Fwith_output_to_temp_buffer, Swith_output_t
755The buffer is cleared out initially, and marked as unmodified when done.\n\ 755The buffer is cleared out initially, and marked as unmodified when done.\n\
756All output done by BODY is inserted in that buffer by default.\n\ 756All output done by BODY is inserted in that buffer by default.\n\
757The buffer is displayed in another window, but not selected.\n\ 757The buffer is displayed in another window, but not selected.\n\
758The hook `temp-buffer-show-hook' is run with that window selected\n\
759temporarily and its buffer current.\n\
758The value of the last form in BODY is returned.\n\ 760The value of the last form in BODY is returned.\n\
759If BODY does not finish normally, the buffer BUFNAME is not displayed.\n\n\ 761If BODY does not finish normally, the buffer BUFNAME is not displayed.\n\n\
760If variable `temp-buffer-show-function' is non-nil, call it at the end\n\ 762If variable `temp-buffer-show-function' is non-nil, call it at the end\n\
761to get the buffer displayed. It gets one argument, the buffer to display.") 763to get the buffer displayed instead of just displaying the non-selected\n\
764buffer and calling the hook. It gets one argument, the buffer to display.")
762 (args) 765 (args)
763 Lisp_Object args; 766 Lisp_Object args;
764{ 767{