changeset 66493:67bd44c70980

(find-file-noselect): Use %d to format large file size.
author Richard M. Stallman <rms@gnu.org>
date Fri, 28 Oct 2005 16:20:12 +0000
parents 3e120a906518
children b9971215f644
files lisp/files.el
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/files.el	Fri Oct 28 16:19:16 2005 +0000
+++ b/lisp/files.el	Fri Oct 28 16:20:12 2005 +0000
@@ -1414,7 +1414,7 @@
 		   (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"))