# HG changeset patch # User Michael Albinus # Date 1254490049 0 # Node ID 724dd25f06a910bc8df9ce4ddc4b02c1b1719f6f # Parent 56aa7f20f7da2bb9f03af7d1fd71e85196b35157 * simple.el (start-file-process): Say in the doc-string, that file handlers might not support pty association, if PROGRAM is nil. diff -r 56aa7f20f7da -r 724dd25f06a9 lisp/simple.el --- 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))))