From: Richard M. Stallman Date: Tue, 3 Feb 1998 06:14:39 +0000 (+0000) Subject: (Fcall_process): Allow creating a new buffer for the output. X-Git-Tag: emacs-20.3~2251 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=50fe359bd17a2efecde87d13b1681b5824f215c5;p=emacs.git (Fcall_process): Allow creating a new buffer for the output. --- diff --git a/src/callproc.c b/src/callproc.c index 18f11c1d8b7..4e1821a2aef 100644 --- a/src/callproc.c +++ b/src/callproc.c @@ -367,7 +367,7 @@ If you quit, the process is killed with SIGINT, or SIGKILL if you quit again.") { Lisp_Object spec_buffer; spec_buffer = buffer; - buffer = Fget_buffer (buffer); + buffer = Fget_buffer_create (buffer); /* Mention the buffer name for a better error message. */ if (NILP (buffer)) CHECK_BUFFER (spec_buffer, 2);