(Various Summary Stuff): Fix the documentation for gnus-newsgroup-variables.
authorKatsumi Yamaoka <yamaoka@jpl.org>
Mon, 22 Mar 2004 09:25:51 +0000 (09:25 +0000)
committerKatsumi Yamaoka <yamaoka@jpl.org>
Mon, 22 Mar 2004 09:25:51 +0000 (09:25 +0000)
texi/ChangeLog
texi/gnus.texi

index e48fab3..22c7283 100644 (file)
@@ -1,3 +1,8 @@
+2004-03-18  Helmut Waitzmann  <Helmut.Waitzmann@web.de>  (tiny change)
+
+       * gnus.texi (Various Summary Stuff): Fix the documentation for
+       gnus-newsgroup-variables.
+
 2004-03-18  Raymond Scholz  <ray-2004@zonix.de>  (tiny change)
 
        * gnus.texi (Misc Article): Refer to `Summary Buffer Mode Line' in
index 056dc2f..7cdc80f 100644 (file)
@@ -10184,11 +10184,19 @@ the list in one particular group:
 @vindex gnus-newsgroup-variables
 @item gnus-newsgroup-variables
 A list of newsgroup (summary buffer) local variables, or cons of
-variables and their default values (when the default values are not
-@code{nil}), that should be made global while the summary buffer is
-active.  These variables can be used to set variables in the group
-parameters while still allowing them to affect operations done in
-other buffers.  For example:
+variables and their default expressions to be evalled (when the default
+values are not @code{nil}), that should be made global while the summary
+buffer is active.
+
+Note: The default expressions will be evaluated (using function
+@code{eval}) before assignment to the local variable rather than just
+assigned to it.  If the default expression is the symbol @code{global},
+that symbol will not be evaluated but the global value of the local
+variable will be used instead.
+
+These variables can be used to set variables in the group parameters
+while still allowing them to affect operations done in other
+buffers.  For example:
 
 @lisp
 (setq gnus-newsgroup-variables
@@ -10197,6 +10205,7 @@ other buffers.  For example:
  "^From:\\|^Newsgroups:\\|^Subject:\\|^Date:\\|^To:")))
 @end lisp
 
+Also @pxref{Group Parameters}.
 @end table