summaryrefslogtreecommitdiff
path: root/mail/mutt-devel/files/patch-05
diff options
context:
space:
mode:
authorChris Rees <crees@FreeBSD.org>2012-07-22 09:15:04 +0000
committerChris Rees <crees@FreeBSD.org>2012-07-22 09:15:04 +0000
commitbb040dde3e08355fc3ff13644072333bff22f964 (patch)
tree48afad7ae2c1b5fd6c866fadb03127860561cb60 /mail/mutt-devel/files/patch-05
parent- Upgrade to 0.12.3.ja2. (diff)
Move mail/mutt to mail/mutt14
Move mail/mutt-lite to mail/mutt14-lite Move mail/mutt-devel to mail/mutt Moving mail/mutt-devel-lite to mail/mutt-lite will follow next to avoid breaking the cvs exporter PR: ports/169546 Suggested by: obrien Approved by: maintainer
Notes
Notes: svn path=/head/; revision=301308
Diffstat (limited to 'mail/mutt-devel/files/patch-05')
-rw-r--r--mail/mutt-devel/files/patch-0543
1 files changed, 0 insertions, 43 deletions
diff --git a/mail/mutt-devel/files/patch-05 b/mail/mutt-devel/files/patch-05
deleted file mode 100644
index bfbb5aa3ab9b..000000000000
--- a/mail/mutt-devel/files/patch-05
+++ /dev/null
@@ -1,43 +0,0 @@
---- curs_lib.c.old Wed Sep 1 19:39:20 1999
-+++ curs_lib.c Sun Sep 26 23:47:03 1999
-@@ -156,6 +156,16 @@
- def = 0;
- break;
- }
-+ else if (tolower(ch.ch) == 'y')
-+ {
-+ def = 1;
-+ break;
-+ }
-+ else if (tolower(ch.ch) == 'n')
-+ {
-+ def = 0;
-+ break;
-+ }
- else
- {
- BEEP();
-@@ -413,8 +423,9 @@
- {
- event_t ch;
- int choice;
-- char *p;
-+ char *p, *nletters;
-
-+ nletters = _(letters);
- mvaddstr (LINES - 1, 0, prompt);
- clrtoeol ();
- FOREVER
-@@ -428,6 +439,12 @@
- }
- else
- {
-+ p = strchr (nletters, ch.ch);
-+ if (p)
-+ {
-+ choice = p - nletters + 1;
-+ break;
-+ }
- p = strchr (letters, ch.ch);
- if (p)
- {