diff options
| author | Thien-Thi Nguyen | 2004-02-15 13:09:44 +0000 |
|---|---|---|
| committer | Thien-Thi Nguyen | 2004-02-15 13:09:44 +0000 |
| commit | 4ae8d76c90a572c9cbe6819899c6aa5cafc69bd7 (patch) | |
| tree | f0c56d175f5b35f070b3943738080e6ec5a152ff | |
| parent | a4a46c6451bdafde7772a992889fa178e47b1fc3 (diff) | |
| download | emacs-4ae8d76c90a572c9cbe6819899c6aa5cafc69bd7.tar.gz emacs-4ae8d76c90a572c9cbe6819899c6aa5cafc69bd7.zip | |
(grep-compute-defaults): Fix typos.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/progmodes/grep.el | 6 |
2 files changed, 7 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 945fdaa80dc..728a34e4ec0 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2004-02-15 Dan Nicolaescu <dann@ics.uci.edu> (tiny change) | ||
| 2 | |||
| 3 | * progmodes/grep.el (grep-compute-defaults): Fix typos. | ||
| 4 | |||
| 1 | 2004-02-15 Jan Dj,Ad(Brv <jan.h.d@swipnet.se> | 5 | 2004-02-15 Jan Dj,Ad(Brv <jan.h.d@swipnet.se> |
| 2 | 6 | ||
| 3 | * x-dnd.el: Mention support for Motif in commentary. | 7 | * x-dnd.el: Mention support for Motif in commentary. |
diff --git a/lisp/progmodes/grep.el b/lisp/progmodes/grep.el index fd68dd64b41..40c900e5301 100644 --- a/lisp/progmodes/grep.el +++ b/lisp/progmodes/grep.el | |||
| @@ -318,9 +318,9 @@ Sets `grep-last-buffer' and runs `grep-setup-hook'." | |||
| 318 | 'gnu))) | 318 | 'gnu))) |
| 319 | (unless grep-find-command | 319 | (unless grep-find-command |
| 320 | (setq grep-find-command | 320 | (setq grep-find-command |
| 321 | (cond ((not (executable-command-find-unix-p "find")) | 321 | (cond ((not (executable-command-find-posix-p "find")) |
| 322 | (message | 322 | (message |
| 323 | (concat "compile.el: Unix type find(1) not found. " | 323 | (concat "compile.el: Posix-style find(1) not found. " |
| 324 | "Please set `grep-find-command'.")) | 324 | "Please set `grep-find-command'.")) |
| 325 | nil) | 325 | nil) |
| 326 | ((eq grep-find-use-xargs 'gnu) | 326 | ((eq grep-find-use-xargs 'gnu) |
| @@ -543,5 +543,5 @@ those sub directories of DIR." | |||
| 543 | (provide 'grep) | 543 | (provide 'grep) |
| 544 | 544 | ||
| 545 | ;;; grep.el ends here | 545 | ;;; grep.el ends here |
| 546 | 546 | ||
| 547 | ;;; arch-tag: 5a5b9169-a79d-4f38-9c38-f69615f39c4d | 547 | ;;; arch-tag: 5a5b9169-a79d-4f38-9c38-f69615f39c4d |