# HG changeset patch # User Richard M. Stallman # Date 1130516412 0 # Node ID 67bd44c709804907ac1f5b58bee256e7298e2ad7 # Parent 3e120a9065183d344a6ffc506445fa10fccff0eb (find-file-noselect): Use %d to format large file size. diff -r 3e120a906518 -r 67bd44c70980 lisp/files.el --- 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"))