Mercurial > emacs
changeset 92462:db4640fb66ee
(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.
author | Glenn Morris <rgm@gnu.org> |
---|---|
date | Tue, 04 Mar 2008 03:52:10 +0000 |
parents | 056b1ebbd816 |
children | 7353ce1a4156 |
files | lisp/gnus/gnus-sum.el |
diffstat | 1 files changed, 10 insertions(+), 11 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/gnus/gnus-sum.el Tue Mar 04 03:50:15 2008 +0000 +++ b/lisp/gnus/gnus-sum.el Tue Mar 04 03:52:10 2008 +0000 @@ -1578,7 +1578,6 @@ (if (boundp 'gnus-newsgroup-variables) nil (load "gnus-sum.el" t t t)) - (require 'gnus) (require 'gnus-art))) ;; MIME stuff. @@ -5015,6 +5014,16 @@ :type 'string :group 'gnus-thread) +(defcustom gnus-summary-display-while-building nil + "If non-nil, show and update the summary buffer as it's being built. +If the value is t, update the buffer after every line is inserted. If +the value is an integer (N), update the display every N lines." + :version "22.1" + :group 'gnus-thread + :type '(choice (const :tag "off" nil) + number + (const :tag "frequently" t))) + (defun gnus-summary-prepare-threads (threads) "Prepare summary buffer from THREADS and indentation LEVEL. THREADS is either a list of `(PARENT [(CHILD1 [(GRANDCHILD ...]...) ...])' @@ -9796,16 +9805,6 @@ :type 'symbol :group 'gnus-summary-mail) -(defcustom gnus-summary-display-while-building nil - "If non-nil, show and update the summary buffer as it's being built. -If the value is t, update the buffer after every line is inserted. If -the value is an integer (N), update the display every N lines." - :version "22.1" - :group 'gnus-thread - :type '(choice (const :tag "off" nil) - number - (const :tag "frequently" t))) - (defun gnus-summary-respool-article (&optional n method) "Respool the current article. The article will be squeezed through the mail spooling process again,