emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] emacs/lisp simple.el


From: Michael Albinus
Subject: [Emacs-diffs] emacs/lisp simple.el
Date: Fri, 02 Oct 2009 13:27:30 +0000

CVSROOT:        /sources/emacs
Module name:    emacs
Changes by:     Michael Albinus <albinus>       09/10/02 13:27:29

Modified files:
        lisp           : simple.el 

Log message:
        * simple.el (start-file-process): Say in the doc-string, that file
        handlers might not support pty association, if PROGRAM is nil.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/simple.el?cvsroot=emacs&r1=1.1014&r2=1.1015

Patches:
Index: simple.el
===================================================================
RCS file: /sources/emacs/emacs/lisp/simple.el,v
retrieving revision 1.1014
retrieving revision 1.1015
diff -u -b -r1.1014 -r1.1015
--- simple.el   2 Oct 2009 03:48:42 -0000       1.1014
+++ simple.el   2 Oct 2009 13:27:29 -0000       1.1015
@@ -2541,7 +2541,8 @@
 the working directory of the process.
 
 PROGRAM and PROGRAM-ARGS might be file names.  They are not
-objects of file handler invocation."
+objects of file handler invocation.  File handlers might not
+support pty association, if PROGRAM is nil."
   (let ((fh (find-file-name-handler default-directory 'start-file-process)))
     (if fh (apply fh 'start-file-process name buffer program program-args)
       (apply 'start-process name buffer program program-args))))




reply via email to

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