summaryrefslogtreecommitdiff
path: root/lisp/files.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>2005-10-28 16:20:12 +0000
committerRichard M. Stallman <rms@gnu.org>2005-10-28 16:20:12 +0000
commit879bae91ca021a3546d227cb1c13a52e53a3bc58 (patch)
tree3ed2b5e1dbb68e164145df6446fcc000d7947d2d /lisp/files.el
parent3d88265867d0697e9c2febc204dde0e86bd78598 (diff)
downloademacs-879bae91ca021a3546d227cb1c13a52e53a3bc58.tar.gz
(find-file-noselect): Use %d to format large file size.
Diffstat (limited to 'lisp/files.el')
-rw-r--r--lisp/files.el2
1 files changed, 1 insertions, 1 deletions
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"))