aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Magne Ingebrigtsen2010-09-06 23:54:07 +0000
committerKatsumi Yamaoka2010-09-06 23:54:07 +0000
commit5edc8186ce140d04a5293c8d7886883b8f1c0798 (patch)
treee2b06f33936aa005d3c2a026dc42da370767b411
parent1099930585662f32278796f9943ac8b50a1179f1 (diff)
downloademacs-5edc8186ce140d04a5293c8d7886883b8f1c0798.tar.gz
emacs-5edc8186ce140d04a5293c8d7886883b8f1c0798.zip
nnml.el (nnml-save-nov): Remove some debugging-related messages.
-rw-r--r--lisp/gnus/ChangeLog4
-rw-r--r--lisp/gnus/nnml.el8
2 files changed, 6 insertions, 6 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog
index 5f9e1347787..14ab0eb2bbb 100644
--- a/lisp/gnus/ChangeLog
+++ b/lisp/gnus/ChangeLog
@@ -1,3 +1,7 @@
12010-09-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
2
3 * nnml.el (nnml-save-nov): Remove some debugging-related messages.
4
12010-09-06 Katsumi Yamaoka <yamaoka@jpl.org> 52010-09-06 Katsumi Yamaoka <yamaoka@jpl.org>
2 6
3 * pop3.el: Require cl when compiling. 7 * pop3.el: Require cl when compiling.
diff --git a/lisp/gnus/nnml.el b/lisp/gnus/nnml.el
index 1c9513d2191..6d676bb8514 100644
--- a/lisp/gnus/nnml.el
+++ b/lisp/gnus/nnml.el
@@ -784,7 +784,6 @@ article number. This function is called narrowed to an article."
784(defvar nnml-incremental-nov-buffer-alist nil) 784(defvar nnml-incremental-nov-buffer-alist nil)
785 785
786(defun nnml-save-incremental-nov () 786(defun nnml-save-incremental-nov ()
787 (message "nnml saving incremental nov...")
788 (save-excursion 787 (save-excursion
789 (while nnml-incremental-nov-buffer-alist 788 (while nnml-incremental-nov-buffer-alist
790 (when (buffer-name (cdar nnml-incremental-nov-buffer-alist)) 789 (when (buffer-name (cdar nnml-incremental-nov-buffer-alist))
@@ -795,8 +794,7 @@ article number. This function is called narrowed to an article."
795 (set-buffer-modified-p nil) 794 (set-buffer-modified-p nil)
796 (kill-buffer (current-buffer))) 795 (kill-buffer (current-buffer)))
797 (setq nnml-incremental-nov-buffer-alist 796 (setq nnml-incremental-nov-buffer-alist
798 (cdr nnml-incremental-nov-buffer-alist)))) 797 (cdr nnml-incremental-nov-buffer-alist)))))
799 (message "nnml saving incremental nov...done"))
800 798
801(defun nnml-open-incremental-nov (group) 799(defun nnml-open-incremental-nov (group)
802 (or (cdr (assoc group nnml-incremental-nov-buffer-alist)) 800 (or (cdr (assoc group nnml-incremental-nov-buffer-alist))
@@ -863,7 +861,6 @@ article number. This function is called narrowed to an article."
863 buffer))) 861 buffer)))
864 862
865(defun nnml-save-nov () 863(defun nnml-save-nov ()
866 (message "nnml saving nov...")
867 (save-excursion 864 (save-excursion
868 (while nnml-nov-buffer-alist 865 (while nnml-nov-buffer-alist
869 (when (buffer-name (cdar nnml-nov-buffer-alist)) 866 (when (buffer-name (cdar nnml-nov-buffer-alist))
@@ -873,8 +870,7 @@ article number. This function is called narrowed to an article."
873 nnml-nov-buffer-file-name nil 'nomesg)) 870 nnml-nov-buffer-file-name nil 'nomesg))
874 (set-buffer-modified-p nil) 871 (set-buffer-modified-p nil)
875 (kill-buffer (current-buffer))) 872 (kill-buffer (current-buffer)))
876 (setq nnml-nov-buffer-alist (cdr nnml-nov-buffer-alist)))) 873 (setq nnml-nov-buffer-alist (cdr nnml-nov-buffer-alist)))))
877 (message "nnml saving nov...done"))
878 874
879;;;###autoload 875;;;###autoload
880(defun nnml-generate-nov-databases (&optional server) 876(defun nnml-generate-nov-databases (&optional server)