Mercurial > emacs
changeset 105384:724dd25f06a9
* simple.el (start-file-process): Say in the doc-string, that file
handlers might not support pty association, if PROGRAM is nil.
author | Michael Albinus <michael.albinus@gmx.de> |
---|---|
date | Fri, 02 Oct 2009 13:27:29 +0000 |
parents | 56aa7f20f7da |
children | e0e4a0d9a3bc |
files | lisp/simple.el |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/simple.el Fri Oct 02 13:21:15 2009 +0000 +++ b/lisp/simple.el Fri Oct 02 13:27:29 2009 +0000 @@ -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))))