# HG changeset patch # User Glenn Morris # Date 1204602730 0 # Node ID db4640fb66ee248aed87bc4790760616945004c5 # Parent 056b1ebbd81692dc6c0878f39ede18e914b4b0cb (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. diff -r 056b1ebbd816 -r db4640fb66ee lisp/gnus/gnus-sum.el --- 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,