emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] emacs/lisp ChangeLog comint.el


From: Chong Yidong
Subject: [Emacs-diffs] emacs/lisp ChangeLog comint.el
Date: Fri, 25 Sep 2009 03:42:26 +0000

CVSROOT:        /sources/emacs
Module name:    emacs
Changes by:     Chong Yidong <cyd>      09/09/25 03:42:25

Modified files:
        lisp           : ChangeLog comint.el 

Log message:
        * comint.el (comint-exec, comint-run, make-comint): Doc
        fixes (Bug#4542).

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/ChangeLog?cvsroot=emacs&r1=1.16259&r2=1.16260
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/comint.el?cvsroot=emacs&r1=1.392&r2=1.393

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/emacs/emacs/lisp/ChangeLog,v
retrieving revision 1.16259
retrieving revision 1.16260
diff -u -b -r1.16259 -r1.16260
--- ChangeLog   25 Sep 2009 03:39:04 -0000      1.16259
+++ ChangeLog   25 Sep 2009 03:42:22 -0000      1.16260
@@ -1,3 +1,8 @@
+2009-09-25  Devon Sean McCullough  <address@hidden>
+
+       * comint.el (comint-exec, comint-run, make-comint): Doc
+       fixes (Bug#4542).
+
 2009-09-25  Glenn Morris  <address@hidden>
 
        * mail/rmailmm.el (rmail-mime): New custom group.

Index: comint.el
===================================================================
RCS file: /sources/emacs/emacs/lisp/comint.el,v
retrieving revision 1.392
retrieving revision 1.393
diff -u -b -r1.392 -r1.393
--- comint.el   30 Aug 2009 22:24:05 -0000      1.392
+++ comint.el   25 Sep 2009 03:42:25 -0000      1.393
@@ -686,7 +686,8 @@
 via `start-file-process', or a cons pair of the form (HOST . SERVICE) denoting
 a TCP connection to be opened via `open-network-stream'.  If there is already
 a running process in that buffer, it is not restarted.  Optional fourth arg
-STARTFILE is the name of a file to send the contents of to the process.
+STARTFILE is the name of a file, whose contents are sent to the
+process as its initial input.
 
 If PROGRAM is a string, any more args are arguments to PROGRAM."
   (or (fboundp 'start-file-process)
@@ -709,7 +710,8 @@
 via `start-file-process', or a cons pair of the form (HOST . SERVICE) denoting
 a TCP connection to be opened via `open-network-stream'.  If there is already
 a running process in that buffer, it is not restarted.  Optional third arg
-STARTFILE is the name of a file to send the contents of the process to.
+STARTFILE is the name of a file, whose contents are sent to the
+process as its initial input.
 
 If PROGRAM is a string, any more args are arguments to PROGRAM."
   (apply #'make-comint-in-buffer name nil program startfile switches))
@@ -728,7 +730,7 @@
 
 (defun comint-exec (buffer name command startfile switches)
   "Start up a process named NAME in buffer BUFFER for Comint modes.
-Runs the given COMMAND with SWITCHES with output to STARTFILE.
+Runs the given COMMAND with SWITCHES, and initial input from STARTFILE.
 Blasts any old process running in the buffer.  Doesn't set the buffer mode.
 You can use this to cheaply run a series of processes in the same Comint
 buffer.  The hook `comint-exec-hook' is run after each exec."




reply via email to

[Prev in Thread] Current Thread [Next in Thread]