diff options
| author | Richard M. Stallman | 1998-02-03 06:14:39 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1998-02-03 06:14:39 +0000 |
| commit | 50fe359bd17a2efecde87d13b1681b5824f215c5 (patch) | |
| tree | 8d1bf100b7211470d6a8fcf40f11283d4f5c44f2 /src | |
| parent | 4ab577cd017a380121249e52d58cd488fa28cc52 (diff) | |
| download | emacs-50fe359bd17a2efecde87d13b1681b5824f215c5.tar.gz emacs-50fe359bd17a2efecde87d13b1681b5824f215c5.zip | |
(Fcall_process): Allow creating a new buffer for the output.
Diffstat (limited to 'src')
| -rw-r--r-- | src/callproc.c | 2 |
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.") | |||
| 367 | { | 367 | { |
| 368 | Lisp_Object spec_buffer; | 368 | Lisp_Object spec_buffer; |
| 369 | spec_buffer = buffer; | 369 | spec_buffer = buffer; |
| 370 | buffer = Fget_buffer (buffer); | 370 | buffer = Fget_buffer_create (buffer); |
| 371 | /* Mention the buffer name for a better error message. */ | 371 | /* Mention the buffer name for a better error message. */ |
| 372 | if (NILP (buffer)) | 372 | if (NILP (buffer)) |
| 373 | CHECK_BUFFER (spec_buffer, 2); | 373 | CHECK_BUFFER (spec_buffer, 2); |