aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2008-03-04 03:52:22 +0000
committerGlenn Morris2008-03-04 03:52:22 +0000
commit1fc34624969db9c6b7c4ca4db3d3406498aa90ec (patch)
tree07f62963c450b70ac9a7f5d75aa1c77f66a16a86
parentc921c7ed8fd6174ebb2dd7fb4286c76b11aa0611 (diff)
downloademacs-1fc34624969db9c6b7c4ca4db3d3406498aa90ec.tar.gz
emacs-1fc34624969db9c6b7c4ca4db3d3406498aa90ec.zip
(top-level): No need to require gnus when compiling,
since unconditionally required near start of file. (gnus-summary-display-while-building): Move definition before use.
-rw-r--r--lisp/gnus/ChangeLog12
-rw-r--r--lisp/gnus/gnus-sum.el21
2 files changed, 19 insertions, 14 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog
index 4c6dad5872b..e68544a96f9 100644
--- a/lisp/gnus/ChangeLog
+++ b/lisp/gnus/ChangeLog
@@ -1,11 +1,17 @@
12008-03-04 Glenn Morris <rgm@gnu.org>
2
3 * gnus-sum.el (top-level): No need to require gnus when compiling,
4 since unconditionally required near start of file.
5 (gnus-summary-display-while-building): Move definition before use.
6
12008-03-03 Stefan Monnier <monnier@iro.umontreal.ca> 72008-03-03 Stefan Monnier <monnier@iro.umontreal.ca>
2 8
3 * mm-bodies.el (mm-decode-content-transfer-encoding): Simplify. 9 * mm-bodies.el (mm-decode-content-transfer-encoding): Simplify.
4 10
5 * gnus-sum.el: Use inhibit-read-only and with-current-buffer. 11 * gnus-sum.el: Use inhibit-read-only and with-current-buffer.
6 (gnus-summary-jump-to-group): Consider windows on other displayed frames as 12 (gnus-summary-jump-to-group): Consider windows on other displayed
7 well. Similar changes might be needed elsewhere, but that's the one I've 13 frames as well. Similar changes might be needed elsewhere, but that's
8 bumped into during my use. 14 the one I've bumped into during my use.
9 15
10 * nndoc.el (nndoc-oe-dbx-type-p): 16 * nndoc.el (nndoc-oe-dbx-type-p):
11 * gnus-msg.el (gnus-debug): 17 * gnus-msg.el (gnus-debug):
diff --git a/lisp/gnus/gnus-sum.el b/lisp/gnus/gnus-sum.el
index c68632c04ff..f4dc4ea43cd 100644
--- a/lisp/gnus/gnus-sum.el
+++ b/lisp/gnus/gnus-sum.el
@@ -1578,7 +1578,6 @@ For example:
1578 (if (boundp 'gnus-newsgroup-variables) 1578 (if (boundp 'gnus-newsgroup-variables)
1579 nil 1579 nil
1580 (load "gnus-sum.el" t t t)) 1580 (load "gnus-sum.el" t t t))
1581 (require 'gnus)
1582 (require 'gnus-art))) 1581 (require 'gnus-art)))
1583 1582
1584;; MIME stuff. 1583;; MIME stuff.
@@ -5015,6 +5014,16 @@ If nil, use subject instead."
5015 :type 'string 5014 :type 'string
5016 :group 'gnus-thread) 5015 :group 'gnus-thread)
5017 5016
5017(defcustom gnus-summary-display-while-building nil
5018 "If non-nil, show and update the summary buffer as it's being built.
5019If the value is t, update the buffer after every line is inserted. If
5020the value is an integer (N), update the display every N lines."
5021 :version "22.1"
5022 :group 'gnus-thread
5023 :type '(choice (const :tag "off" nil)
5024 number
5025 (const :tag "frequently" t)))
5026
5018(defun gnus-summary-prepare-threads (threads) 5027(defun gnus-summary-prepare-threads (threads)
5019 "Prepare summary buffer from THREADS and indentation LEVEL. 5028 "Prepare summary buffer from THREADS and indentation LEVEL.
5020THREADS is either a list of `(PARENT [(CHILD1 [(GRANDCHILD ...]...) ...])' 5029THREADS is either a list of `(PARENT [(CHILD1 [(GRANDCHILD ...]...) ...])'
@@ -9796,16 +9805,6 @@ If nil, use to the current newsgroup method."
9796 :type 'symbol 9805 :type 'symbol
9797 :group 'gnus-summary-mail) 9806 :group 'gnus-summary-mail)
9798 9807
9799(defcustom gnus-summary-display-while-building nil
9800 "If non-nil, show and update the summary buffer as it's being built.
9801If the value is t, update the buffer after every line is inserted. If
9802the value is an integer (N), update the display every N lines."
9803 :version "22.1"
9804 :group 'gnus-thread
9805 :type '(choice (const :tag "off" nil)
9806 number
9807 (const :tag "frequently" t)))
9808
9809(defun gnus-summary-respool-article (&optional n method) 9808(defun gnus-summary-respool-article (&optional n method)
9810 "Respool the current article. 9809 "Respool the current article.
9811The article will be squeezed through the mail spooling process again, 9810The article will be squeezed through the mail spooling process again,