gnus.texi (X-Face): Fix.
authorSimon Josefsson <jas@extundo.com>
Mon, 13 Jan 2003 18:00:59 +0000 (18:00 +0000)
committerSimon Josefsson <jas@extundo.com>
Mon, 13 Jan 2003 18:00:59 +0000 (18:00 +0000)
texi/ChangeLog
texi/gnus.texi

index d7f1f73..3a8d5af 100644 (file)
@@ -1,5 +1,7 @@
 2003-01-13  Simon Josefsson  <jas@extundo.com>
 
+       * gnus.texi (X-Face): Fix.
+
        * message.texi (Security): Fix.
 
        * gnus.texi (Security): Fix.
index 7e9b24e..277463d 100644 (file)
@@ -20973,26 +20973,32 @@ Gnus provides a few convenience functions and variables to allow
 easier insertion of X-Face headers in outgoing messages.
 
 @findex gnus-random-x-face
-@code{gnus-random-x-face} goes through all the @samp{pbm} files
-in @code{gnus-x-face-directory} and picks one at random, and then
+@code{gnus-random-x-face} goes through all the @samp{pbm} files in
+@code{gnus-x-face-directory} and picks one at random, and then
 converts it to the X-Face format by using the
 @code{gnus-convert-pbm-to-x-face-command} shell command.  The
-@samp{pbm} files should be 48x48 pixels big.
+@samp{pbm} files should be 48x48 pixels big.  It returns the X-Face
+header data as a string.
 
+@findex gnus-insert-random-x-face-header
+Calls @code{gnus-random-x-face} and inserts a @samp{X-Face} header
+with the randomly generated data.
+
+@findex gnus-x-face-from-file
 @code{gnus-x-face-from-file} takes a GIF file as the parameter, and then
 converts the file to X-Face format by using the
 @code{gnus-convert-image-to-x-face-command} shell command.
 
-Here's how you would typically use the former function.  Put something
+Here's how you would typically use the second function.  Put something
 like the following in your @file{.gnus.el} file:
 
 @lisp
 (setq message-required-news-headers
       (nconc message-required-news-headers
-             (list '(X-Face . gnus-random-x-face))))
+             (list '(X-Face . gnus-insert-random-x-face-header))))
 @end lisp
 
-Using the latter function would be something like this:
+Using the last function would be something like this:
 
 @lisp
 (setq message-required-news-headers