diff options
| author | Pavel Janík | 2001-12-25 11:07:45 +0000 |
|---|---|---|
| committer | Pavel Janík | 2001-12-25 11:07:45 +0000 |
| commit | c19813f3f5cf259d823b2d98878e06cf8fef269e (patch) | |
| tree | 9ce739ff306847e981ec75e575861b94a32d23e6 | |
| parent | 634f4a678a94fcc9c58ed8e69c573c834fbfd837 (diff) | |
| download | emacs-c19813f3f5cf259d823b2d98878e06cf8fef269e.tar.gz emacs-c19813f3f5cf259d823b2d98878e06cf8fef269e.zip | |
(locate): Remove dot at the end of error argument.
| -rw-r--r-- | lisp/ChangeLog | 2 | ||||
| -rw-r--r-- | lisp/locate.el | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 7a46f4ea292..1697f1a200d 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2001-12-25 Pavel Jan,Bm(Bk <Pavel@Janik.cz> | 1 | 2001-12-25 Pavel Jan,Bm(Bk <Pavel@Janik.cz> |
| 2 | 2 | ||
| 3 | * locate.el (locate): Remove dot at the end of error argument. | ||
| 4 | |||
| 3 | * emerge.el (emerge-show-file-name): Use frame-height instead of | 5 | * emerge.el (emerge-show-file-name): Use frame-height instead of |
| 4 | obsolete screen-height. | 6 | obsolete screen-height. |
| 5 | 7 | ||
diff --git a/lisp/locate.el b/lisp/locate.el index 12eb08a0326..c467665a8e5 100644 --- a/lisp/locate.el +++ b/lisp/locate.el | |||
| @@ -210,7 +210,7 @@ With prefix arg, prompt for the locate command to run." | |||
| 210 | (setq input default)) | 210 | (setq input default)) |
| 211 | input)))) | 211 | input)))) |
| 212 | (if (equal search-string "") | 212 | (if (equal search-string "") |
| 213 | (error "Please specify a filename to search for.")) | 213 | (error "Please specify a filename to search for")) |
| 214 | (let* ((locate-cmd-list (funcall locate-make-command-line search-string)) | 214 | (let* ((locate-cmd-list (funcall locate-make-command-line search-string)) |
| 215 | (locate-cmd (car locate-cmd-list)) | 215 | (locate-cmd (car locate-cmd-list)) |
| 216 | (locate-cmd-args (cdr locate-cmd-list)) | 216 | (locate-cmd-args (cdr locate-cmd-list)) |