mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-03 09:48:00 -04:00
19 lines
523 B
Plaintext
19 lines
523 B
Plaintext
$NetBSD: patch-ao,v 1.4 2009/01/26 22:35:03 tonio Exp $
|
|
|
|
Add change_folder_next option.
|
|
|
|
--- 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,11 @@
|
|
}
|
|
else
|
|
{
|
|
+ if (option (OPTCHANGEFOLDERNEXT) && Context && Context->path)
|
|
+ {
|
|
+ strfcpy (buf, Context->path, sizeof (buf));
|
|
+ mutt_pretty_mailbox (buf, sizeof (buf));
|
|
+ }
|
|
mutt_buffy (buf, sizeof (buf));
|
|
|
|
if (mutt_enter_fname (cp, buf, sizeof (buf), &menu->redraw, 1) == -1)
|