From 50fe359bd17a2efecde87d13b1681b5824f215c5 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Tue, 3 Feb 1998 06:14:39 +0000 Subject: [PATCH] (Fcall_process): Allow creating a new buffer for the output. --- src/callproc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/callproc.c b/src/callproc.c index 18f11c1d8b..4e1821a2ae 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); -- 2.20.1