]> granicus.if.org Git - mutt/commitdiff
Document that $charset is a fallback for $send_charset
authorRocco Rutte <pdmef@gmx.net>
Tue, 18 Sep 2007 09:37:25 +0000 (11:37 +0200)
committerRocco Rutte <pdmef@gmx.net>
Tue, 18 Sep 2007 09:37:25 +0000 (11:37 +0200)
ChangeLog
init.h

index 6f8cb5f5f879c4001f57ac9aea430375d83f3016..7819ae4d1ecd57764a8d255637924de7bb873137 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2007-09-17 17:32 +0200  Rocco Rutte  <pdmef@gmx.net>  (ae47263fc1b0)
+
+       * main.c: Backoug changeset 6f06b7f1f76f
+
+2007-09-17 15:42 +0200  Rocco Rutte  <pdmef@gmx.net>  (73c4e07cd976)
+
+       * ChangeLog, muttlib.c: Enable padding with multibyte chars for %>X,
+       %*X and %|X
+
 2007-09-17 13:05 +0200  Rocco Rutte  <pdmef@gmx.net>  (6f06b7f1f76f)
 
        * main.c: Mark interesting items in mutt -v output for translation
diff --git a/init.h b/init.h
index a3d4c7874bace9758ab996a87caef447ff4f74ed..97d5409cc46c7b0356467b3aa9d0aeb98d65330a 100644 (file)
--- a/init.h
+++ b/init.h
@@ -315,6 +315,7 @@ struct option_t MuttVars[] = {
   /*
   ** .pp
   ** Character set your terminal uses to display and enter textual data.
+  ** It is also the fallback for $$send_charset.
   */
   { "check_new",       DT_BOOL, R_NONE, OPTCHECKNEW, 1 },
   /*
@@ -2474,13 +2475,16 @@ struct option_t MuttVars[] = {
   { "send_charset",    DT_STR,  R_NONE, UL &SendCharset, UL "us-ascii:iso-8859-1:utf-8" },
   /*
   ** .pp
-  ** A list of character sets for outgoing messages. Mutt will use the
+  ** A colon-delimited list of character sets for outgoing messages. Mutt will use the
   ** first character set into which the text can be converted exactly.
   ** If your ``$$charset'' is not iso-8859-1 and recipients may not
   ** understand UTF-8, it is advisable to include in the list an
   ** appropriate widely used standard character set (such as
   ** iso-8859-2, koi8-r or iso-2022-jp) either instead of or after
   ** "iso-8859-1".
+  ** .pp
+  ** In case the text cannot be converted into one of these exactly,
+  ** mutt uses ``$$charset'' as a fallback.
   */
   { "sendmail",                DT_PATH, R_NONE, UL &Sendmail, UL SENDMAIL " -oem -oi" },
   /*