diff options
author | Pavel Janík <Pavel@Janik.cz> | 2001-12-25 11:07:45 +0000 |
---|---|---|
committer | Pavel Janík <Pavel@Janik.cz> | 2001-12-25 11:07:45 +0000 |
commit | c19813f3f5cf259d823b2d98878e06cf8fef269e (patch) | |
tree | 9ce739ff306847e981ec75e575861b94a32d23e6 /lisp/locate.el | |
parent | 634f4a678a94fcc9c58ed8e69c573c834fbfd837 (diff) | |
download | emacs-c19813f3f5cf259d823b2d98878e06cf8fef269e.tar.gz |
(locate): Remove dot at the end of error argument.
Diffstat (limited to 'lisp/locate.el')
-rw-r--r-- | lisp/locate.el | 2 |
1 files changed, 1 insertions, 1 deletions
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." (setq input default)) input)))) (if (equal search-string "") - (error "Please specify a filename to search for.")) + (error "Please specify a filename to search for")) (let* ((locate-cmd-list (funcall locate-make-command-line search-string)) (locate-cmd (car locate-cmd-list)) (locate-cmd-args (cdr locate-cmd-list)) |