changeset 70325:c8e4a9156d18

(undo-outer-limit-truncate): Put quotes around buffer name in messages.
author Richard M. Stallman <rms@gnu.org>
date Mon, 01 May 2006 20:17:24 +0000
parents 5a0747ecd057
children a379c5190e90
files lisp/simple.el
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/simple.el	Mon May 01 20:16:40 2006 +0000
+++ b/lisp/simple.el	Mon May 01 20:17:24 2006 +0000
@@ -1709,7 +1709,7 @@
 	;; but we don't want to ask the question again.
 	(setq undo-extra-outer-limit (+ size 50000))
 	(if (let (use-dialog-box track-mouse executing-kbd-macro )
-	      (yes-or-no-p (format "Buffer %s undo info is %d bytes long; discard it? "
+	      (yes-or-no-p (format "Buffer `%s' undo info is %d bytes long; discard it? "
 				   (buffer-name) size)))
 	    (progn (setq buffer-undo-list nil)
 		   (setq undo-extra-outer-limit nil)
@@ -1717,7 +1717,7 @@
 	  nil))
     (display-warning '(undo discard-info)
 		     (concat
-		      (format "Buffer %s undo info was %d bytes long.\n"
+		      (format "Buffer `%s' undo info was %d bytes long.\n"
 			      (buffer-name) size)
 		      "The undo info was discarded because it exceeded \
 `undo-outer-limit'.