(gnus-summary-save-article-coding-system): Offer some
authorReiner Steib <Reiner.Steib@gmx.de>
Tue, 23 May 2006 13:48:26 +0000 (13:48 +0000)
committerReiner Steib <Reiner.Steib@gmx.de>
Tue, 23 May 2006 13:48:26 +0000 (13:48 +0000)
suitable coding systems in customize.

lisp/ChangeLog
lisp/gnus-sum.el

index 0921e14..ce8d5c5 100644 (file)
@@ -1,3 +1,8 @@
+2006-05-23  Reiner Steib  <Reiner.Steib@gmx.de>
+
+       * gnus-sum.el (gnus-summary-save-article-coding-system): Offer some
+       suitable coding systems in customize.
+
 2006-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
 
        * gnus-sum.el (gnus-summary-save-article-mail): Clarify doc string.
index 5be74ba..570f0a5 100644 (file)
@@ -11234,7 +11234,10 @@ The recommended coding systems include `utf-8', `iso-2022-7bit', and so
 forth.  Note that buttonized MIME parts will be lost in a saved file.
 If it is nil, raw articles will be saved."
   :type '(choice :format "%{%t%}:\n %[Value Menu%] %v"
-                (const :tag "Save raw articles")
+                (const :tag "Save raw articles" nil)
+                (const :tag "UTF-8" utf-8)
+                (const :tag "iso-2022-7bit" iso-2022-7bit)
+                (const :tag "Emacs internal" emacs-mule)
                 (symbol :tag "Coding system"))
   :group 'gnus-article-saving)