summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorErik Naggum <erik@naggum.no>1996-04-03 18:22:06 +0000
committerErik Naggum <erik@naggum.no>1996-04-03 18:22:06 +0000
commit0c58ae64c51f3d1a2492cebabc0750383ca8202b (patch)
treec0f6ffcf4c29973e1f22987470b94790fd2e75cc /lisp
parent2c575859ee994602c0790be883f59bd3135e2bfe (diff)
downloademacs-0c58ae64c51f3d1a2492cebabc0750383ca8202b.tar.gz
(gnus-summary-prepare-threads): Call `gnus-message' instead of `message'.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/gnus.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/gnus.el b/lisp/gnus.el
index a2c2f445ff0..c72e407c2e7 100644
--- a/lisp/gnus.el
+++ b/lisp/gnus.el
@@ -6502,7 +6502,7 @@ Unscored articles will be counted as having a score of zero."
"Prepare summary buffer from THREADS and indentation LEVEL.
THREADS is either a list of `(PARENT [(CHILD1 [(GRANDCHILD ...]...) ...])'
or a straight list of headers."
- (message "Generating summary...")
+ (gnus-message 5 "Generating summary...")
(let ((level 0)
thread header number subject stack state gnus-tmp-gathered)
(if (vectorp (car threads))
@@ -6628,7 +6628,7 @@ or a straight list of headers."
(setq stack (cons (cons (max 0 level) (nthcdr 1 thread)) stack)))
(setq level (1+ level))
(setq threads (cdr (car thread))))))
- (message "Generating summary...done"))
+ (gnus-message 5 "Generating summary...done"))