diff options
| author | Richard M. Stallman | 1994-04-24 08:15:55 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-04-24 08:15:55 +0000 |
| commit | 6657eedf6ba2fc753549f3cb276690889fb89188 (patch) | |
| tree | d39ef9c5c9f22186c4c1032d9da0c300ac156e4b | |
| parent | ebf0b439d599bab7c884c62b99bd1048cefe9ca7 (diff) | |
| download | emacs-6657eedf6ba2fc753549f3cb276690889fb89188.tar.gz emacs-6657eedf6ba2fc753549f3cb276690889fb89188.zip | |
(find-dired, find-dired-sentinel):
Remove space after `:' in mode-line-process.
| -rw-r--r-- | lisp/find-dired.el | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/find-dired.el b/lisp/find-dired.el index cea8318fcd6..9c2af423c07 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.13 $" 11 -2) | 10 | (defconst find-dired-version (substring "$Revision: 1.14 $" 11 -2) |
| 11 | "$Id: find-dired.el,v 1.13 1993/05/28 00:58:08 roland Exp rms $") | 11 | "$Id: find-dired.el,v 1.14 1994/01/06 04:39:00 rms 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/05/28 00:58:08 $|$Revision: 1.13 $| | 36 | ;; |$Date: 1994/01/06 04:39:00 $|$Revision: 1.14 $| |
| 37 | 37 | ||
| 38 | ;; INSTALLATION ====================================================== | 38 | ;; INSTALLATION ====================================================== |
| 39 | 39 | ||
| @@ -128,7 +128,7 @@ The command run (after changing into DIR) is | |||
| 128 | (function find-dired-filter)) | 128 | (function find-dired-filter)) |
| 129 | (set-process-sentinel (get-buffer-process (current-buffer)) | 129 | (set-process-sentinel (get-buffer-process (current-buffer)) |
| 130 | (function find-dired-sentinel)) | 130 | (function find-dired-sentinel)) |
| 131 | (setq mode-line-process '(": %s"))) | 131 | (setq mode-line-process '(":%s"))) |
| 132 | 132 | ||
| 133 | ;;;###autoload | 133 | ;;;###autoload |
| 134 | (defun find-name-dired (dir pattern) | 134 | (defun find-name-dired (dir pattern) |
| @@ -206,7 +206,7 @@ Thus ARG can also contain additional grep options." | |||
| 206 | (insert " at " (substring (current-time-string) 0 19)) | 206 | (insert " at " (substring (current-time-string) 0 19)) |
| 207 | (forward-char 1) | 207 | (forward-char 1) |
| 208 | (setq mode-line-process | 208 | (setq mode-line-process |
| 209 | (concat ": " | 209 | (concat ":" |
| 210 | (symbol-name (process-status proc)))) | 210 | (symbol-name (process-status proc)))) |
| 211 | ;; Since the buffer and mode line will show that the | 211 | ;; Since the buffer and mode line will show that the |
| 212 | ;; process is dead, we can delete it now. Otherwise it | 212 | ;; process is dead, we can delete it now. Otherwise it |