Changeset 1861:000b6e876953 for charset.c
Legend:
- Unmodified
- Added
- Removed
-
charset.c
r1851 r1861 80 80 char tocode1[SHORT_STRING]; 81 81 char fromcode1[SHORT_STRING]; 82 char *tmp; 82 83 83 84 mutt_canonical_charset (tocode1, sizeof (tocode1), tocode); 85 if ((tmp = mutt_charset_hook (tocode1))) 86 mutt_canonical_charset (tocode1, sizeof (tocode1), tmp); 87 84 88 mutt_canonical_charset (fromcode1, sizeof (fromcode1), fromcode); 89 if ((tmp = mutt_charset_hook (fromcode1))) 90 mutt_canonical_charset (fromcode1, sizeof (fromcode1), tmp); 91 85 92 return iconv_open (tocode1, fromcode1); 86 93 }
