From: yamaoka Date: Tue, 22 Nov 2005 06:22:02 +0000 (+0000) Subject: Synch to No Gnus 200511220621. X-Git-Tag: t-gnus-6_17_4-quimby-~220 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=99c62854da7daaaeb061de2482f36b9fe0499a9d;p=elisp%2Fgnus.git- Synch to No Gnus 200511220621. --- diff --git a/texi/ChangeLog b/texi/ChangeLog index bfeefce..574da9c 100644 --- a/texi/ChangeLog +++ b/texi/ChangeLog @@ -1,3 +1,7 @@ +2005-11-22 Katsumi Yamaoka + + * gnus.texi (Emacs Lisp): Use ~/.gnus.el instead of ~/.emacs. + 2005-11-17 Katsumi Yamaoka * gnus.texi (Slow Terminal Connection): Replace old description diff --git a/texi/gnus.texi b/texi/gnus.texi index 0b995ff..ae39dfb 100644 --- a/texi/gnus.texi +++ b/texi/gnus.texi @@ -29189,8 +29189,10 @@ interpreted.) If you decide that you don't like the way Gnus does certain things, it's trivial to have it do something a different way. (Well, at least if you know how to write Lisp code.) However, that's beyond the scope of this manual, so we are simply going to talk about -some common constructs that you normally use in your @file{.emacs} file -to customize Gnus. +some common constructs that you normally use in your @file{~/.gnus.el} +file to customize Gnus. (You can also use the @file{~/.emacs} file, but +in order to set things of Gnus up, it is much better to use the +@file{~/.gnus.el} file, @xref{Startup Files}.) If you want to set the variable @code{gnus-florgbnize} to four (4), you write the following: @@ -29201,12 +29203,12 @@ write the following: This function (really ``special form'') @code{setq} is the one that can set a variable to some value. This is really all you need to know. Now -you can go and fill your @file{.emacs} file with lots of these to change -how Gnus works. +you can go and fill your @file{~/.gnus.el} file with lots of these to +change how Gnus works. -If you have put that thing in your @file{.emacs} file, it will be read -and @code{eval}ed (which is lisp-ese for ``run'') the next time you -start Emacs. If you want to change the variable right away, simply say +If you have put that thing in your @file{~/.gnus.el} file, it will be +read and @code{eval}ed (which is Lisp-ese for ``run'') the next time you +start Gnus. If you want to change the variable right away, simply say @kbd{C-x C-e} after the closing parenthesis. That will @code{eval} the previous ``form'', which is a simple @code{setq} statement here.