diff options
author | Richard M. Stallman <rms@gnu.org> | 1992-09-21 01:35:20 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1992-09-21 01:35:20 +0000 |
commit | ea4e62d62b15c96323371b596af054525a4e5152 (patch) | |
tree | 5f901bb017602197a14d93347a1805c1f22931cf /lisp/find-dired.el | |
parent | c5b3fb09f96a9839148a523dcb286685d50d1293 (diff) | |
download | emacs-ea4e62d62b15c96323371b596af054525a4e5152.tar.gz |
entered into RCS
Diffstat (limited to 'lisp/find-dired.el')
-rw-r--r-- | lisp/find-dired.el | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/lisp/find-dired.el b/lisp/find-dired.el index 520a5dbc944..fc1165e2d47 100644 --- a/lisp/find-dired.el +++ b/lisp/find-dired.el @@ -182,25 +182,6 @@ Thus ARG can also contain additional grep options." (setq mode-line-process nil) (message "find-dired %s finished." (current-buffer)))))) -(or (fboundp 'start-process-shell-command) - ;; From version 19 subr.el. - (defun start-process-shell-command (name buffer &rest args) - "Start a program in a subprocess. Return the process object for it. -Args are NAME BUFFER COMMAND &rest COMMAND-ARGS. -NAME is name for process. It is modified if necessary to make it unique. -BUFFER is the buffer or (buffer-name) to associate with the process. - Process output goes at end of that buffer, unless you specify - an output stream or filter function to handle the output. - BUFFER may be also nil, meaning that this process is not associated - 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." - (if (eq system-type 'vax-vms) - (apply 'start-process name buffer args) - (start-process name buffer shell-file-name "-c" - (concat "exec " (mapconcat 'identity args " ")))))) - (provide 'find-dired) ;;; find-dired.el ends here |