Show
Ignore:
Timestamp:
2003-01-05 14:02:37 (6 years ago)
Author:
Thomas Roessler <roessler@…>
Branch:
HEAD
Message:

Another mutt_yesorno() change, in order to correctly interpret a C-g.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • commands.c

    r3253 r3255  
    905905  if (!h && b->type == TYPETEXT && charset_changed) 
    906906  { 
     907    int r; 
    907908    snprintf (tmp, sizeof (tmp), _("Convert to %s upon sending?"), 
    908909              mutt_get_parameter ("charset", b->parameter)); 
    909     b->noconv = !mutt_yesorno (tmp, !b->noconv); 
     910    if ((r = mutt_yesorno (tmp, !b->noconv)) != -1) 
     911      b->noconv = (r == M_NO); 
    910912  } 
    911913