summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1998-02-03 06:14:39 +0000
committerRichard M. Stallman <rms@gnu.org>1998-02-03 06:14:39 +0000
commitc33f2f82c5b25b6694a9abd62dba1b443d597060 (patch)
treeca486621b4ce417929a97a9747d381eda736cfce
parentfe0e3d0ad997b9160b4b533c6146a54499abb893 (diff)
downloademacs-c33f2f82c5b25b6694a9abd62dba1b443d597060.tar.gz
(Fcall_process): Allow creating a new buffer for the output.
-rw-r--r--src/callproc.c2
1 files changed, 1 insertions, 1 deletions
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);