User: vins
Date: 05/11/27 02:45:58
Branch: xemacs/src release-21-4
Modified: xemacs/src ChangeLog callproc.c
Log:
Fold_call_process_internal): Create the buffer if it does not already exist.
Revision Changes Path
1.290.2.98 +6 -0 XEmacs/xemacs/src/ChangeLog
Index: ChangeLog
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/src/ChangeLog,v
retrieving revision 1.290.2.97
retrieving revision 1.290.2.98
diff -u -p -r1.290.2.97 -r1.290.2.98
--- ChangeLog 2005/11/26 03:47:38 1.290.2.97
+++ ChangeLog 2005/11/27 01:45:45 1.290.2.98
@@ -1,3 +1,9 @@
+2005-11-26 Vin Shelton <acs(a)xemacs.org>
+
+ * callproc.c (Fold_call_process_internal): Create the buffer if it
+ does not already exist. The original patch came from Ben Wing in
+
http://list-archive.xemacs.org/xemacs-patches/200205/msg00117.html
+
2002-05-13 Adrian Aichner <adrian(a)xemacs.org>
* callproc.c: Process-related docstring improvements spurred by
1.37.2.5 +1 -1 XEmacs/xemacs/src/Attic/callproc.c
Index: callproc.c
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/src/Attic/callproc.c,v
retrieving revision 1.37.2.4
retrieving revision 1.37.2.5
diff -u -p -r1.37.2.4 -r1.37.2.5
--- callproc.c 2005/11/26 03:47:42 1.37.2.4
+++ callproc.c 2005/11/27 01:45:51 1.37.2.5
@@ -291,7 +291,7 @@ If you quit, the process is killed with
|| ZEROP (buffer)))
{
Lisp_Object 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);