aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/simple.el
diff options
context:
space:
mode:
authorKaroly Lorentey <[email protected]>2006-05-03 11:56:53 +0000
committerKaroly Lorentey <[email protected]>2006-05-03 11:56:53 +0000
commitc044516d384ff70e820686d4e995dcc23ee22e6f (patch)
tree4a9b52cf3e7da73040903b719dfca8113a765884 /lisp/simple.el
parentb33c71f58623306001d4d4fe4f7354d8c360edaa (diff)
parent9d6bb9e0af2671a4deca1509f4a2d5655400f67a (diff)
Merged from [email protected]
Patches applied: * [email protected]/emacs--devo--0--patch-252 Merge from gnus--rel--5.10 * [email protected]/emacs--devo--0--patch-253 Update from CVS * [email protected]/emacs--devo--0--patch-254 Update from CVS * [email protected]/emacs--devo--0--patch-255 Update from CVS * [email protected]/emacs--devo--0--patch-256 Update from CVS * [email protected]/emacs--devo--0--patch-257 Merge from gnus--rel--5.10 * [email protected]/emacs--devo--0--patch-258 Clean up lisp/gnus/ChangeLog a bit * [email protected]/emacs--devo--0--patch-259 Update from CVS * [email protected]/emacs--devo--0--patch-260 Update from CVS * [email protected]/emacs--devo--0--patch-261 lisp/replace.el (occur-engine): Bind `inhibit-field-text-motion' to t * [email protected]/emacs--devo--0--patch-262 Update from CVS * [email protected]/gnus--rel--5.10--patch-96 Update from CVS * [email protected]/gnus--rel--5.10--patch-97 Update from CVS * [email protected]/gnus--rel--5.10--patch-98 Update from CVS git-archimport-id: [email protected]/emacs--multi-tty--0--patch-554
Diffstat (limited to 'lisp/simple.el')
-rw-r--r--lisp/simple.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/simple.el b/lisp/simple.el
index 99192d79ec..bf620c2533 100644
--- a/lisp/simple.el
+++ b/lisp/simple.el
@@ -1697,7 +1697,7 @@ This variable only matters if `undo-ask-before-discard' is non-nil.")
;; 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)
@@ -1705,7 +1705,7 @@ This variable only matters if `undo-ask-before-discard' is non-nil.")
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'.