Show
Ignore:
Timestamp:
2003-01-05 13:59:59 (6 years ago)
Author:
Armin Wolfermann <aw@…>
Branch:
HEAD
Message:

Fix a number of invocations of mutt_yesorno(): Always explicitly use
the M_YES and M_NO constants. Fixes a couple of cases in which C-g
would be mis-interpreted.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • commands.c

    r3179 r3253  
    289289                      prompt, sizeof (prompt), 0); 
    290290  strcat (prompt, "...?");      /* __STRCAT_CHECKED__ */ 
    291   if (mutt_yesorno (prompt, 1) != 1) 
     291  if (mutt_yesorno (prompt, M_YES) != M_YES) 
    292292  { 
    293293    rfc822_free_address (&adr);