From: Richard M. Stallman Date: Fri, 28 Oct 2005 16:20:12 +0000 (+0000) Subject: (find-file-noselect): Use %d to format large file size. X-Git-Tag: emacs-pretest-22.0.90~6246 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=879bae91ca021a3546d227cb1c13a52e53a3bc58;p=emacs.git (find-file-noselect): Use %d to format large file size. --- diff --git a/lisp/files.el b/lisp/files.el index 4373738080a..c4273a859fb 100644 --- a/lisp/files.el +++ b/lisp/files.el @@ -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"))