summaryrefslogtreecommitdiff
path: root/mail/mutt14/files/patch-05
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>1999-02-14 10:41:19 +0000
committercvs2svn <cvs2svn@FreeBSD.org>1999-02-14 10:41:19 +0000
commitce5da22b7076167a515a6a0b602b22b67022e5ff (patch)
tree2de75577a4acfc9897ffb9ed4f14f84b6bf1ef54 /mail/mutt14/files/patch-05
parentYipes, committed the wrong one. This is the INDEX file for 3.1R. (diff)
This commit was manufactured by cvs2svn to create tag 'RELEASE_3_1_0'.release/3.1.0
Diffstat (limited to 'mail/mutt14/files/patch-05')
-rw-r--r--mail/mutt14/files/patch-0528
1 files changed, 0 insertions, 28 deletions
diff --git a/mail/mutt14/files/patch-05 b/mail/mutt14/files/patch-05
deleted file mode 100644
index 5cb212c146ba..000000000000
--- a/mail/mutt14/files/patch-05
+++ /dev/null
@@ -1,28 +0,0 @@
---- curs_lib.c.bak Thu Jan 14 14:29:17 1999
-+++ curs_lib.c Sat Feb 13 20:14:02 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,
-@@ -145,12 +145,12 @@
- if (ch.ch == -1) return(-1);
- if (CI_is_return (ch.ch))
- break;
-- else if (tolower(ch.ch) == tolower(*yes))
-+ else if (tolower(ch.ch) == tolower(*yes) || tolower(ch.ch) == 'y')
- {
- def = 1;
- break;
- }
-- else if (tolower(ch.ch) == tolower(*no))
-+ else if (tolower(ch.ch) == tolower(*no) || tolower(ch.ch) == 'n')
- {
- def = 0;
- break;