From 879bae91ca021a3546d227cb1c13a52e53a3bc58 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Fri, 28 Oct 2005 16:20:12 +0000 Subject: [PATCH] (find-file-noselect): Use %d to format large file size. --- lisp/files.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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")) -- 2.39.5