]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fwith_output_to_temp_buffer): Add usage: string to doc string.
authorMiles Bader <miles@gnu.org>
Sun, 21 Oct 2001 15:27:09 +0000 (15:27 +0000)
committerMiles Bader <miles@gnu.org>
Sun, 21 Oct 2001 15:27:09 +0000 (15:27 +0000)
src/print.c

index 692495948036924cce5d8d393f31c44c4d7bc9a5..15da00a9e5a7573c9445d1b0f8a2b427b726af8a 100644 (file)
@@ -632,7 +632,8 @@ internal_with_output_to_temp_buffer (bufname, function, args)
   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 @@ to display it temporarily selected.
 
 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;
 {