diff options
| author | Paul Eggert | 2019-11-17 15:26:55 -0800 |
|---|---|---|
| committer | Paul Eggert | 2019-11-17 15:27:21 -0800 |
| commit | 0b47d731c08d0d5d4ba4a0c31f9be1152fd8c2c8 (patch) | |
| tree | e0e761ef987ce1a69956b1180f818577afe68c1f /lisp | |
| parent | 0415ad210c8c99e771b6273b6f683fe3f3614c6f (diff) | |
| download | emacs-0b47d731c08d0d5d4ba4a0c31f9be1152fd8c2c8.tar.gz emacs-0b47d731c08d0d5d4ba4a0c31f9be1152fd8c2c8.zip | |
* lisp/simple.el (process-file): Clarify doc string.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/simple.el | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/lisp/simple.el b/lisp/simple.el index 8229899f9ac..c61ccd511c5 100644 --- a/lisp/simple.el +++ b/lisp/simple.el | |||
| @@ -4007,14 +4007,13 @@ subprocess is `default-directory'. | |||
| 4007 | If PROGRAM is a remote file name, it should be processed | 4007 | If PROGRAM is a remote file name, it should be processed |
| 4008 | by `file-local-name' before passing it to this function. | 4008 | by `file-local-name' before passing it to this function. |
| 4009 | 4009 | ||
| 4010 | File names in INFILE and BUFFER are handled normally, but file | 4010 | Handle file names in INFILE and BUFFER normally; this differs |
| 4011 | names in ARGS should be relative to `default-directory', as they | 4011 | from `call-process', which does not support file name handlers |
| 4012 | are passed to the process verbatim. (This is a difference from | 4012 | for INFILE and BUFFER. However, pass ARGS to the process |
| 4013 | `call-process', which does not support file name handlers for INFILE | 4013 | verbatim without file name handling, as `call-process' does. |
| 4014 | and BUFFER.) | 4014 | |
| 4015 | 4015 | Some file name handlers might not support all variants. For | |
| 4016 | Some file name handlers might not support all variants, for example | 4016 | example, they might treat DISPLAY as nil regardless of the actual |
| 4017 | they might behave as if DISPLAY was nil, regardless of the actual | ||
| 4018 | value passed." | 4017 | value passed." |
| 4019 | (let ((fh (find-file-name-handler default-directory 'process-file)) | 4018 | (let ((fh (find-file-name-handler default-directory 'process-file)) |
| 4020 | lc stderr-file) | 4019 | lc stderr-file) |