Show
Ignore:
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:
1 modified

Legend:

Unmodified
Added
Removed
  • commands.c

    r3808 r3850  
    911911  /* inform the user */ 
    912912   
     913  snprintf (tmp, sizeof (tmp), "%s/%s", TYPE (b), NONULL (b->subtype)); 
    913914  if (type_changed) 
    914915    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); 
    916920    mutt_message (_("Character set changed to %s; %s."), 
    917921                  mutt_get_parameter ("charset", b->parameter), 
    918922                  b->noconv ? _("not converting") : _("converting")); 
     923  } 
    919924 
    920925  b->force_charset |= charset_changed ? 1 : 0;