From: Michael Albinus Date: Fri, 2 Oct 2009 13:27:29 +0000 (+0000) Subject: * simple.el (start-file-process): Say in the doc-string, that file X-Git-Tag: emacs-pretest-23.1.90~986 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=91f11424036e73c1ea8111282e8097b660c191ec;p=emacs.git * simple.el (start-file-process): Say in the doc-string, that file handlers might not support pty association, if PROGRAM is nil. --- diff --git a/lisp/simple.el b/lisp/simple.el index b77429ebd20..aa8ee15105b 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -2541,7 +2541,8 @@ In the latter case, the local part of `default-directory' becomes 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))))