# HG changeset patch # User james # Date 1095172819 0 # Node ID e13775448cf0aca6f49dfc572285b1db72473cba # Parent 61855263cb07e00a7d5004d5af13871c26031d73 [xemacs-hg @ 2004-09-14 14:39:49 by james] Remove all but one remaining trace of callproc.c. diff -r 61855263cb07 -r e13775448cf0 man/ChangeLog --- a/man/ChangeLog Tue Sep 14 14:33:07 2004 +0000 +++ b/man/ChangeLog Tue Sep 14 14:40:19 2004 +0000 @@ -1,3 +1,9 @@ +2004-09-13 Jerry James + + * internals/internals.texi (Modules for Interfacing with the + Operating System): The code formerly in callproc.c is now + implemented in Lisp in process.el. + 2004-08-30 Jerry James * lispref/text.texi: Document text fields. diff -r 61855263cb07 -r e13775448cf0 man/internals/internals.texi --- a/man/internals/internals.texi Tue Sep 14 14:33:07 2004 +0000 +++ b/man/internals/internals.texi Tue Sep 14 14:40:19 2004 +0000 @@ -5468,7 +5468,7 @@ @cindex operating system, modules for interfacing with the @example -callproc.c +process.el process.c process.h @end example @@ -5478,7 +5478,7 @@ @cindex synchronous subprocesses @cindex subprocesses, synchronous - @file{callproc.c} implements (through the @code{call-process} + @file{process.el} implements (through the @code{call-process} primitive) what are called @dfn{synchronous subprocesses}. This means that XEmacs runs a program, waits till it's done, and retrieves its output. A typical example might be calling the @file{ls} program to get diff -r 61855263cb07 -r e13775448cf0 nt/ChangeLog --- a/nt/ChangeLog Tue Sep 14 14:33:07 2004 +0000 +++ b/nt/ChangeLog Tue Sep 14 14:40:19 2004 +0000 @@ -1,3 +1,7 @@ +2004-09-13 Jerry James + + * xemacs.dsp: Remove callproc.c as a source file. + 2004-06-01 Adrian Aichner * xemacs.mak: Don't echo DEL command. Use COPYCMD everywhere. diff -r 61855263cb07 -r e13775448cf0 nt/xemacs.dsp --- a/nt/xemacs.dsp Tue Sep 14 14:33:07 2004 +0000 +++ b/nt/xemacs.dsp Tue Sep 14 14:40:19 2004 +0000 @@ -147,10 +147,6 @@ # End Source File # Begin Source File -SOURCE=..\src\callproc.c -# End Source File -# Begin Source File - SOURCE=..\src\casefiddle.c # End Source File # Begin Source File diff -r 61855263cb07 -r e13775448cf0 src/ChangeLog --- a/src/ChangeLog Tue Sep 14 14:33:07 2004 +0000 +++ b/src/ChangeLog Tue Sep 14 14:40:19 2004 +0000 @@ -1,3 +1,7 @@ +2004-09-13 Jerry James + + * callproc.c: Really remove. + 2004-09-13 Jerry James * s/windowsnt.h: Define (DECLARE_)DOESNT_RETURN_TYPE instead of diff -r 61855263cb07 -r e13775448cf0 src/callproc.c