# HG changeset patch # User Miles Bader # Date 1003678029 0 # Node ID 3c480f0b4146f1814462d3ca299e04c4a6b9a0de # Parent a8f1728d40c2156174a036830e43905274f4b15a (Fwith_output_to_temp_buffer): Add usage: string to doc string. diff -r a8f1728d40c2 -r 3c480f0b4146 src/print.c --- a/src/print.c Sun Oct 21 15:23:58 2001 +0000 +++ b/src/print.c Sun Oct 21 15:27:09 2001 +0000 @@ -632,7 +632,8 @@ return unbind_to (count, val); } -DEFUN ("with-output-to-temp-buffer", Fwith_output_to_temp_buffer, Swith_output_to_temp_buffer, +DEFUN ("with-output-to-temp-buffer", + Fwith_output_to_temp_buffer, Swith_output_to_temp_buffer, 1, UNEVALLED, 0, doc: /* Bind `standard-output' to buffer BUFNAME, eval BODY, then show that buffer. The buffer is cleared out initially, and marked as unmodified when done. @@ -649,7 +650,9 @@ If variable `temp-buffer-show-function' is non-nil, call it at the end to get the buffer displayed instead of just displaying the non-selected -buffer and calling the hook. It gets one argument, the buffer to display. */) +buffer and calling the hook. It gets one argument, the buffer to display. + +usage: (with-output-to-temp-buffer BUFFNAME BODY ...) */) (args) Lisp_Object args; {