]> git.eshelyaron.com Git - emacs.git/commitdiff
* mh-show.el (mh-unvisit-file): Clarify language in yes-or-no-p and
authorBill Wohler <wohler@newt.com>
Tue, 20 Sep 2011 04:56:09 +0000 (21:56 -0700)
committerBill Wohler <wohler@newt.com>
Tue, 20 Sep 2011 04:56:09 +0000 (21:56 -0700)
error messages.

lisp/mh-e/ChangeLog
lisp/mh-e/mh-show.el

index 731aaf25f3d18825ce015e008e687dbd587a4bad..adaa8e1a6c00c972b6c03e02c5cdf15914fefeb5 100644 (file)
@@ -1,3 +1,8 @@
+2011-07-30  Bill Wohler  <wohler@newt.com>
+
+       * mh-show.el (mh-unvisit-file): Clarify language in yes-or-no-p
+       and error messages.
+
 2011-07-17  Bill Wohler  <wohler@newt.com>
 
        Release MH-E version 8.2.93.
index 7b5593ba6085a2c08d6771f2ed7410ec533713dd..d14ab20fc7cabbb864e8e1fc4b9cad38758bf08a 100644 (file)
@@ -319,9 +319,9 @@ ignored if VISIBLE-HEADERS is non-nil."
   "Separate current buffer from the message file it was visiting."
   (or (not (buffer-modified-p))
       (null buffer-file-name)           ;we've been here before
-      (yes-or-no-p (format "Message %s modified; flush changes? "
+      (yes-or-no-p (format "Message %s modified; discard changes? "
                            (file-name-nondirectory buffer-file-name)))
-      (error "Flushing changes not confirmed"))
+      (error "Changes preserved"))
   (clear-visited-file-modtime)
   (unlock-buffer)
   (setq buffer-file-name nil))