diff options
| author | Richard M. Stallman | 1994-01-06 04:39:00 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-01-06 04:39:00 +0000 |
| commit | 4f1d6310e1f7bf74afab2f04908611ec8e5f7cc8 (patch) | |
| tree | fc786bd3c107cd83e19ed48bb6f56e875aa7a243 | |
| parent | ed10e0ab9cddf9bfacc19f2e0cdb3f67570210c6 (diff) | |
| download | emacs-4f1d6310e1f7bf74afab2f04908611ec8e5f7cc8.tar.gz emacs-4f1d6310e1f7bf74afab2f04908611ec8e5f7cc8.zip | |
(start-process-shell-command): Doc fix.
| -rw-r--r-- | lisp/find-dired.el | 8 | ||||
| -rw-r--r-- | lisp/subr.el | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/lisp/find-dired.el b/lisp/find-dired.el index 718aae76fa4..cea8318fcd6 100644 --- a/lisp/find-dired.el +++ b/lisp/find-dired.el | |||
| @@ -7,8 +7,8 @@ | |||
| 7 | ;; Maintainer: Sebastian Kremer <sk@thp.uni-koeln.de> | 7 | ;; Maintainer: Sebastian Kremer <sk@thp.uni-koeln.de> |
| 8 | ;; Keywords: unix | 8 | ;; Keywords: unix |
| 9 | 9 | ||
| 10 | (defconst find-dired-version (substring "$Revision: 1.12 $" 11 -2) | 10 | (defconst find-dired-version (substring "$Revision: 1.13 $" 11 -2) |
| 11 | "$Id: find-dired.el,v 1.12 1993/04/23 06:51:38 eric Exp roland $") | 11 | "$Id: find-dired.el,v 1.13 1993/05/28 00:58:08 roland Exp rms $") |
| 12 | 12 | ||
| 13 | ;;; This program is free software; you can redistribute it and/or modify | 13 | ;;; This program is free software; you can redistribute it and/or modify |
| 14 | ;;; it under the terms of the GNU General Public License as published by | 14 | ;;; it under the terms of the GNU General Public License as published by |
| @@ -33,7 +33,7 @@ | |||
| 33 | ;; find-dired|Roland McGrath, Sebastian Kremer | 33 | ;; find-dired|Roland McGrath, Sebastian Kremer |
| 34 | ;; |roland@gnu.ai.mit.edu, sk@thp.uni-koeln.de | 34 | ;; |roland@gnu.ai.mit.edu, sk@thp.uni-koeln.de |
| 35 | ;; |Run a `find' command and dired the output | 35 | ;; |Run a `find' command and dired the output |
| 36 | ;; |$Date: 1993/04/23 06:51:38 $|$Revision: 1.12 $| | 36 | ;; |$Date: 1993/05/28 00:58:08 $|$Revision: 1.13 $| |
| 37 | 37 | ||
| 38 | ;; INSTALLATION ====================================================== | 38 | ;; INSTALLATION ====================================================== |
| 39 | 39 | ||
| @@ -229,7 +229,7 @@ BUFFER is the buffer or (buffer-name) to associate with the process. | |||
| 229 | with any buffer | 229 | with any buffer |
| 230 | Third arg is command name, the name of a shell command. | 230 | Third arg is command name, the name of a shell command. |
| 231 | Remaining arguments are the arguments for the command. | 231 | Remaining arguments are the arguments for the command. |
| 232 | Wildcards and redirection are handle as usual in the shell." | 232 | Wildcards and redirection are handled as usual in the shell." |
| 233 | (if (eq system-type 'vax-vms) | 233 | (if (eq system-type 'vax-vms) |
| 234 | (apply 'start-process name buffer args) | 234 | (apply 'start-process name buffer args) |
| 235 | (start-process name buffer shell-file-name "-c" | 235 | (start-process name buffer shell-file-name "-c" |
diff --git a/lisp/subr.el b/lisp/subr.el index b4f43ff9867..d47949ce419 100644 --- a/lisp/subr.el +++ b/lisp/subr.el | |||
| @@ -630,7 +630,7 @@ BUFFER is the buffer or (buffer-name) to associate with the process. | |||
| 630 | with any buffer | 630 | with any buffer |
| 631 | Third arg is command name, the name of a shell command. | 631 | Third arg is command name, the name of a shell command. |
| 632 | Remaining arguments are the arguments for the command. | 632 | Remaining arguments are the arguments for the command. |
| 633 | Wildcards and redirection are handle as usual in the shell." | 633 | Wildcards and redirection are handled as usual in the shell." |
| 634 | (if (eq system-type 'vax-vms) | 634 | (if (eq system-type 'vax-vms) |
| 635 | (apply 'start-process name buffer args) | 635 | (apply 'start-process name buffer args) |
| 636 | (start-process name buffer shell-file-name "-c" | 636 | (start-process name buffer shell-file-name "-c" |