]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix messages.
authorRichard M. Stallman <rms@gnu.org>
Wed, 23 Apr 1997 23:34:20 +0000 (23:34 +0000)
committerRichard M. Stallman <rms@gnu.org>
Wed, 23 Apr 1997 23:34:20 +0000 (23:34 +0000)
lisp/find-file.el

index b8aee680516f67599abc96b679c6860bc51e102d..c303226ff4e39504250bd18ab9ea01e7343669bc 100644 (file)
@@ -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))