]> git.eshelyaron.com Git - emacs.git/commitdiff
(find-file-noselect): Use %d to format large file size.
authorRichard M. Stallman <rms@gnu.org>
Fri, 28 Oct 2005 16:20:12 +0000 (16:20 +0000)
committerRichard M. Stallman <rms@gnu.org>
Fri, 28 Oct 2005 16:20:12 +0000 (16:20 +0000)
lisp/files.el

index 4373738080a7c8b37279770649019138023599b5..c4273a859fb76ec4e02497fc4b7cbbf7e63160ee 100644 (file)
@@ -1414,7 +1414,7 @@ the various files."
                   (not (or buf nowarn))
                   (> (nth 7 attributes) large-file-warning-threshold)
                   (not (y-or-n-p
-                        (format "File %s is large (%sMB), really open? "
+                        (format "File %s is large (%dMB), really open? "
                                 (file-name-nondirectory filename)
                                   (/ (nth 7 attributes) 1048576)))))
          (error "Aborted"))