summaryrefslogtreecommitdiff
path: root/mail/mutt-devel/patches
diff options
context:
space:
mode:
Diffstat (limited to 'mail/mutt-devel/patches')
-rw-r--r--mail/mutt-devel/patches/patch-am12
-rw-r--r--mail/mutt-devel/patches/patch-an18
-rw-r--r--mail/mutt-devel/patches/patch-ao17
3 files changed, 47 insertions, 0 deletions
diff --git a/mail/mutt-devel/patches/patch-am b/mail/mutt-devel/patches/patch-am
new file mode 100644
index 00000000000..8a7047cd2c2
--- /dev/null
+++ b/mail/mutt-devel/patches/patch-am
@@ -0,0 +1,12 @@
+$NetBSD: patch-am,v 1.5 2007/12/06 08:51:51 cjs Exp $
+
+--- mutt.h.orig 2007-08-29 02:44:16.000000000 +0900
++++ mutt.h 2007-12-06 17:36:02.000000000 +0900
+@@ -339,6 +339,7 @@
+ OPTBEEPNEW,
+ OPTBOUNCEDELIVERED,
+ OPTBRAILLEFRIENDLY,
++ OPTCHANGEFOLDERNEXT,
+ OPTCHECKMBOXSIZE,
+ OPTCHECKNEW,
+ OPTCOLLAPSEUNREAD,
diff --git a/mail/mutt-devel/patches/patch-an b/mail/mutt-devel/patches/patch-an
new file mode 100644
index 00000000000..6c739420ea4
--- /dev/null
+++ b/mail/mutt-devel/patches/patch-an
@@ -0,0 +1,18 @@
+$NetBSD: patch-an,v 1.1 2007/12/06 08:51:51 cjs Exp $
+
+--- init.h.orig 2007-11-01 02:48:52.000000000 +0900
++++ init.h 2007-12-06 17:35:34.000000000 +0900
+@@ -317,6 +317,13 @@
+ ** Character set your terminal uses to display and enter textual data.
+ ** It is also the fallback for $$send_charset.
+ */
++ { "change_folder_next", DT_BOOL, R_NONE, OPTCHANGEFOLDERNEXT, 0 },
++ /*
++ ** .pp
++ ** When this variable is set, the change-folder command will start at the
++ ** next folder after the current folder in your mailbox list instead of
++ ** starting at the first folder.
++ */
+ { "check_new", DT_BOOL, R_NONE, OPTCHECKNEW, 1 },
+ /*
+ ** .pp
diff --git a/mail/mutt-devel/patches/patch-ao b/mail/mutt-devel/patches/patch-ao
new file mode 100644
index 00000000000..75f11a2a575
--- /dev/null
+++ b/mail/mutt-devel/patches/patch-ao
@@ -0,0 +1,17 @@
+$NetBSD: patch-ao,v 1.1 2007/12/06 08:51:52 cjs Exp $
+
+--- curs_main.c.orig 2007-12-06 17:32:01.000000000 +0900
++++ curs_main.c 2007-12-06 17:34:20.000000000 +0900
+@@ -1080,6 +1080,12 @@
+ }
+ else
+ {
++ if (option (OPTCHANGEFOLDERNEXT) && Context && Context->path)
++ if (option (OPTCHANGEFOLDERNEXT) && Context && Context->path)
++ {
++ strfcpy (buf, Context->path, sizeof (buf));
++ mutt_pretty_mailbox (buf);
++ }
+ mutt_buffy (buf, sizeof (buf));
+
+ if (mutt_enter_fname (cp, buf, sizeof (buf), &menu->redraw, 1) == -1)