Changeset 3850:53106cf24fe0
- Timestamp:
- 2005-01-27 12:38:02 (4 years ago)
- Author:
- TAKAHASHI Tamotsu <ttakah@…>
- Branch:
- HEAD
- Message:
-
0. In compose mode, press Ctrl-t to change Content-Type.
1. Type "application/octet-stream" for example.
2. Press Ctrl-t again.
3. Type "text/plain; charset=us-ascii"
4. You will be asked "Convert to us-ascii upon sending?"
5. Press y or n.
6. You will see a strange message:
"Content-Type changed to Convert to us-ascii upon sending?."
- Files:
-
Legend:
- Unmodified
- Added
- Removed
-
|
r3808
|
r3850
|
|
| 911 | 911 | /* inform the user */ |
| 912 | 912 | |
| | 913 | snprintf (tmp, sizeof (tmp), "%s/%s", TYPE (b), NONULL (b->subtype)); |
| 913 | 914 | if (type_changed) |
| 914 | 915 | mutt_message (_("Content-Type changed to %s."), tmp); |
| 915 | | else if (b->type == TYPETEXT && charset_changed) |
| | 916 | if (b->type == TYPETEXT && charset_changed) |
| | 917 | { |
| | 918 | if (type_changed) |
| | 919 | mutt_sleep (1); |
| 916 | 920 | mutt_message (_("Character set changed to %s; %s."), |
| 917 | 921 | mutt_get_parameter ("charset", b->parameter), |
| 918 | 922 | b->noconv ? _("not converting") : _("converting")); |
| | 923 | } |
| 919 | 924 | |
| 920 | 925 | b->force_charset |= charset_changed ? 1 : 0; |