diff options
author | David E. O'Brien <obrien@FreeBSD.org> | 1999-09-07 06:14:00 +0000 |
---|---|---|
committer | David E. O'Brien <obrien@FreeBSD.org> | 1999-09-07 06:14:00 +0000 |
commit | 81921e950796dc53375d7c9395080756c00371b3 (patch) | |
tree | 136ed109bd4ccd851d5b798da34f634896f374dc /mail/mutt14/files/patch-05 | |
parent | Automatically create a Japanese font environment by TrueType fonts (diff) |
Upgrade to 1.0 release candidate 2.
Notes
Notes:
svn path=/head/; revision=21352
Diffstat (limited to 'mail/mutt14/files/patch-05')
-rw-r--r-- | mail/mutt14/files/patch-05 | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/mail/mutt14/files/patch-05 b/mail/mutt14/files/patch-05 index 01e1c45a2846..0c8e4da8c1aa 100644 --- a/mail/mutt14/files/patch-05 +++ b/mail/mutt14/files/patch-05 @@ -1,33 +1,5 @@ --- curs_lib.c.orig Thu Jan 14 14:29:17 1999 +++ curs_lib.c Thu Feb 18 20:58:46 1999 -@@ -132,8 +132,8 @@ - int mutt_yesorno (const char *msg, int def) - { - event_t ch; -- char *yes = _("yes"); -- char *no = _("no"); -+ unsigned char *yes = _("yes"); -+ unsigned char *no = _("no"); - - CLEARLINE(LINES-1); - printw("%s ([%c]/%c): ", msg, def ? *yes : *no, -@@ -155,6 +155,16 @@ - def = 0; - break; - } -+ else if (tolower(ch.ch) == 'y') -+ { -+ def = 1; -+ break; -+ } -+ else if (tolower(ch.ch) == 'n') -+ { -+ def = 0; -+ break; -+ } - else - { - BEEP(); @@ -408,8 +418,9 @@ { event_t ch; |