summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1997-04-23 23:34:20 +0000
committerRichard M. Stallman <rms@gnu.org>1997-04-23 23:34:20 +0000
commit988021a7d1ba3464b50ada4272543307599e15ca (patch)
tree9b0137f630e447cb364e5cbd05e700a1d7b1978a /lisp
parentb25b124636e3fb1664b6a6a144b71e7e68055edb (diff)
downloademacs-988021a7d1ba3464b50ada4272543307599e15ca.tar.gz
Fix messages.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/find-file.el10
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/find-file.el b/lisp/find-file.el
index b8aee680516..c303226ff4e 100644
--- a/lisp/find-file.el
+++ b/lisp/find-file.el
@@ -498,7 +498,7 @@ If optional IN-OTHER-WINDOW is non-nil, find the file in another window."
(ff-find-file pathname in-other-window t)))
(t ;; don't create the file, just whinge
- (message "no file found for %s" fname))))
+ (message "No file found for %s" fname))))
(t ;; matching file found
nil))))
@@ -562,10 +562,10 @@ Arguments: (search-dirs fname-stub &optional suffix-list)
(setq filename (concat fname-stub this-suffix))
(if (not ff-quiet-mode)
- (message "finding buffer %s..." filename))
+ (message "Finding buffer %s..." filename))
- (if (bufferp (get-buffer filename))
- (setq found (buffer-file-name (get-buffer filename))))
+ (if (bufferp (get-file-buffer filename))
+ (setq found (buffer-file-name (get-file-buffer filename))))
(setq blist (buffer-list))
(setq buf (buffer-name (car blist)))
@@ -604,7 +604,7 @@ Arguments: (search-dirs fname-stub &optional suffix-list)
(setq file (concat dir "/" filename))
(if (not ff-quiet-mode)
- (message "finding %s..." file))
+ (message "Finding %s..." file))
(if (file-exists-p file)
(setq found file))