aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1994-01-06 04:39:00 +0000
committerRichard M. Stallman <[email protected]>1994-01-06 04:39:00 +0000
commit4f1d6310e1f7bf74afab2f04908611ec8e5f7cc8 (patch)
treefc786bd3c107cd83e19ed48bb6f56e875aa7a243 /lisp
parented10e0ab9cddf9bfacc19f2e0cdb3f67570210c6 (diff)
(start-process-shell-command): Doc fix.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/find-dired.el8
-rw-r--r--lisp/subr.el2
2 files changed, 5 insertions, 5 deletions
diff --git a/lisp/find-dired.el b/lisp/find-dired.el
index 718aae76fa..cea8318fcd 100644
--- a/lisp/find-dired.el
+++ b/lisp/find-dired.el
@@ -7,8 +7,8 @@
;; Maintainer: Sebastian Kremer <[email protected]>
;; Keywords: unix
-(defconst find-dired-version (substring "$Revision: 1.12 $" 11 -2)
- "$Id: find-dired.el,v 1.12 1993/04/23 06:51:38 eric Exp roland $")
+(defconst find-dired-version (substring "$Revision: 1.13 $" 11 -2)
+ "$Id: find-dired.el,v 1.13 1993/05/28 00:58:08 roland Exp rms $")
;;; This program is free software; you can redistribute it and/or modify
;;; it under the terms of the GNU General Public License as published by
@@ -33,7 +33,7 @@
;; find-dired|Roland McGrath, Sebastian Kremer
;; |Run a `find' command and dired the output
-;; |$Date: 1993/04/23 06:51:38 $|$Revision: 1.12 $|
+;; |$Date: 1993/05/28 00:58:08 $|$Revision: 1.13 $|
;; INSTALLATION ======================================================
@@ -229,7 +229,7 @@ BUFFER is the buffer or (buffer-name) to associate with the process.
with any buffer
Third arg is command name, the name of a shell command.
Remaining arguments are the arguments for the command.
-Wildcards and redirection are handle as usual in the shell."
+Wildcards and redirection are handled as usual in the shell."
(if (eq system-type 'vax-vms)
(apply 'start-process name buffer args)
(start-process name buffer shell-file-name "-c"
diff --git a/lisp/subr.el b/lisp/subr.el
index b4f43ff986..d47949ce41 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.
with any buffer
Third arg is command name, the name of a shell command.
Remaining arguments are the arguments for the command.
-Wildcards and redirection are handle as usual in the shell."
+Wildcards and redirection are handled as usual in the shell."
(if (eq system-type 'vax-vms)
(apply 'start-process name buffer args)
(start-process name buffer shell-file-name "-c"