emacs-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-commit] emacs/lisp/mh-e mh-print.el ChangeLog


From: Bill Wohler
Subject: [Emacs-commit] emacs/lisp/mh-e mh-print.el ChangeLog
Date: Tue, 01 Nov 2005 12:35:33 -0500

CVSROOT:        /cvsroot/emacs
Module name:    emacs
Branch:         
Changes by:     Bill Wohler <address@hidden>    05/11/01 17:35:33

Modified files:
        lisp/mh-e      : mh-print.el ChangeLog 

Log message:
        (mh-ps-spool-buffer, mh-ps-spool-a-msg)
        (mh-ps-print-msg): Remove debugging messages. (mh-ps-print-msg-show,
        mh-ps-print-msg-show)
        (mh-ps-print-toggle-color, mh-ps-print-toggle-mime): Remove period
        after message per conventions.

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/emacs/emacs/lisp/mh-e/mh-print.el.diff?tr1=1.9&tr2=1.10&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/emacs/emacs/lisp/mh-e/ChangeLog.diff?tr1=1.58&tr2=1.59&r1=text&r2=text

Patches:
Index: emacs/lisp/mh-e/ChangeLog
diff -u emacs/lisp/mh-e/ChangeLog:1.58 emacs/lisp/mh-e/ChangeLog:1.59
--- emacs/lisp/mh-e/ChangeLog:1.58      Mon Oct 31 01:59:51 2005
+++ emacs/lisp/mh-e/ChangeLog   Tue Nov  1 17:35:33 2005
@@ -1,3 +1,11 @@
+2005-11-01  Bill Wohler  <address@hidden>
+
+       * mh-print.el (mh-ps-spool-buffer, mh-ps-spool-a-msg) 
+       (mh-ps-print-msg): Remove debugging messages.
+       (mh-ps-print-msg-show, mh-ps-print-msg-show) 
+       (mh-ps-print-toggle-color, mh-ps-print-toggle-mime): Remove period
+       after message per conventions.
+
 2005-10-30  Bill Wohler  <address@hidden>
 
        * mh-e.el (mh-scan-good-msg-regexp, mh-scan-deleted-msg-regexp) 
Index: emacs/lisp/mh-e/mh-print.el
diff -u emacs/lisp/mh-e/mh-print.el:1.9 emacs/lisp/mh-e/mh-print.el:1.10
--- emacs/lisp/mh-e/mh-print.el:1.9     Mon Oct 10 16:37:54 2005
+++ emacs/lisp/mh-e/mh-print.el Tue Nov  1 17:35:33 2005
@@ -64,7 +64,6 @@
 ;; XXX - Default print buffer is bogus
 (defun mh-ps-spool-buffer (buffer)
   "Send BUFFER to printer queue."
-  (message "mh-ps-spool-buffer %s" buffer)
   (save-excursion
     (set-buffer buffer)
     (let ((ps-print-color-p mh-ps-print-color-option)
@@ -85,8 +84,6 @@
   "Print MSG.
 First the message is decoded in BUFFER before the results are sent to the
 printer."
-  (message "mh-ps-spool-a-msg msg %s buffer %s"
-                  msg buffer)
   (let ((mh-show-buffer mh-show-buffer)
        (folder mh-current-folder)
         ;; The following is commented out because
@@ -113,8 +110,6 @@
 Check the documentation of `mh-interactive-range' to see how RANGE is read in
 interactive use."
   (interactive (list (mh-interactive-range "Print")))
-  (message "mh-ps-print-msg range %s keys %s"
-                   range (this-command-keys))
   (mh-iterate-on-range msg range
     (let ((buffer (get-buffer-create mh-temp-buffer)))
       (unwind-protect
@@ -152,8 +147,6 @@
 (defun mh-ps-print-msg-show (file)
   "Print current show buffer to FILE."
   (interactive (list (mh-ps-print-preprint current-prefix-arg)))
-  (message "mh-ps-print-msg-show file %s keys %s mh-show-buffer %s"
-                  file (this-command-keys) mh-show-buffer)
   (let ((msg (mh-get-msg-num t))
         (folder mh-current-folder)
         (show-buffer mh-show-buffer)
@@ -164,8 +157,8 @@
              (progn
                (mh-ps-spool-buffer show-buffer)
                (ps-despool file))
-           (message "Current message is not being shown(1).")))
-      (message "Current message is not being shown(2)."))))
+           (message "Current message is not being shown(1)")))
+      (message "Current message is not being shown(2)"))))
 
 ;;;###mh-autoload
 (defun mh-ps-print-toggle-faces ()
@@ -185,13 +178,13 @@
  (if (eq mh-ps-print-color-option nil)
      (progn
        (setq mh-ps-print-color-option 'black-white)
-       (message "Colors will be printed as black & white."))
+       (message "Colors will be printed as black & white"))
    (if (eq mh-ps-print-color-option 'black-white)
        (progn
         (setq mh-ps-print-color-option t)
-        (message "Colors will be printed."))
+        (message "Colors will be printed"))
      (setq mh-ps-print-color-option nil)
-     (message "Colors will not be printed."))))
+     (message "Colors will not be printed"))))
 
 ;;; XXX: Check option 3. Documentation doesn't sound right.
 ;;;###mh-autoload
@@ -205,13 +198,13 @@
   (if (eq mh-ps-print-mime nil)
       (progn
         (setq mh-ps-print-mime t)
-        (message "Inline parts will be printed, attachments will not be 
printed."))
+        (message "Inline parts will be printed, attachments will not be 
printed"))
     (if (eq mh-ps-print-mime t)
         (progn
           (setq mh-ps-print-mime 1)
-          (message "Both Inline parts and attachments will be printed."))
+          (message "Both Inline parts and attachments will be printed"))
       (setq mh-ps-print-mime nil)
-      (message "Neither inline parts nor attachments will be printed."))))
+      (message "Neither inline parts nor attachments will be printed"))))
 
 ;;; Old non-PS based printing
 ;;;###mh-autoload




reply via email to

[Prev in Thread] Current Thread [Next in Thread]