diff options
| author | Michael Albinus | 2009-10-02 13:27:29 +0000 |
|---|---|---|
| committer | Michael Albinus | 2009-10-02 13:27:29 +0000 |
| commit | 91f11424036e73c1ea8111282e8097b660c191ec (patch) | |
| tree | 7e04edffa8410420339d04a501cbe04e1e6b119d | |
| parent | 571c4c875745b3e9cd8577980d2bb009c6f05e11 (diff) | |
| download | emacs-91f11424036e73c1ea8111282e8097b660c191ec.tar.gz emacs-91f11424036e73c1ea8111282e8097b660c191ec.zip | |
* simple.el (start-file-process): Say in the doc-string, that file
handlers might not support pty association, if PROGRAM is nil.
| -rw-r--r-- | lisp/simple.el | 3 |
1 files changed, 2 insertions, 1 deletions
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 | |||
| 2541 | the working directory of the process. | 2541 | the working directory of the process. |
| 2542 | 2542 | ||
| 2543 | PROGRAM and PROGRAM-ARGS might be file names. They are not | 2543 | PROGRAM and PROGRAM-ARGS might be file names. They are not |
| 2544 | objects of file handler invocation." | 2544 | objects of file handler invocation. File handlers might not |
| 2545 | support pty association, if PROGRAM is nil." | ||
| 2545 | (let ((fh (find-file-name-handler default-directory 'start-file-process))) | 2546 | (let ((fh (find-file-name-handler default-directory 'start-file-process))) |
| 2546 | (if fh (apply fh 'start-file-process name buffer program program-args) | 2547 | (if fh (apply fh 'start-file-process name buffer program program-args) |
| 2547 | (apply 'start-process name buffer program program-args)))) | 2548 | (apply 'start-process name buffer program program-args)))) |