Skip to content
This repository was archived by the owner on Jan 25, 2026. It is now read-only.

Commit 3d90396

Browse files
committed
missing files for 20160611
1 parent b5b4d4b commit 3d90396

11 files changed

Lines changed: 489 additions & 395 deletions

features-extra/0008-feature-progress-bar.patch renamed to features-extra/0001-feature-progress-bar.patch

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
From f54b8bcac685535c857878eab4a847aa8ce91afc Mon Sep 17 00:00:00 2001
1+
From a202c641c734e113bf743bccffe236fca1be0982 Mon Sep 17 00:00:00 2001
22
From: Richard Russon <rich@flatcap.org>
33
Date: Tue, 24 May 2016 17:17:59 +0100
4-
Subject: [PATCH 08/18] feature: progress bar
4+
Subject: [PATCH 01/11] feature: progress bar
55

66
---
77
PATCHES | 1 +
@@ -174,7 +174,7 @@ index 3178f22..1ab6d2d 100644
174174
}
175175

176176
diff --git a/doc/manual.xml.head b/doc/manual.xml.head
177-
index a1364db..82459b8 100644
177+
index 676ed6a..239f955 100644
178178
--- a/doc/manual.xml.head
179179
+++ b/doc/manual.xml.head
180180
@@ -3323,6 +3323,7 @@ <sect1 id="color">
@@ -339,7 +339,7 @@ index 0000000..a632dc0
339339
+
340340
+" vim: syntax=vim
341341
diff --git a/mutt_curses.h b/mutt_curses.h
342-
index fbcbb87..6f63160 100644
342+
index 2bfa1ae..75ea85a 100644
343343
--- a/mutt_curses.h
344344
+++ b/mutt_curses.h
345345
@@ -135,6 +135,7 @@ enum

features-extra/0009-feature-skip-quoted.patch renamed to features-extra/0002-feature-skip-quoted.patch

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
From 5ce7afaccdb9357b5592c34dda126682d574c72e Mon Sep 17 00:00:00 2001
1+
From 704c624598267226af34db127c6a7fa8e00efe02 Mon Sep 17 00:00:00 2001
22
From: Richard Russon <rich@flatcap.org>
33
Date: Tue, 24 May 2016 17:19:14 +0100
4-
Subject: [PATCH 09/18] feature: skip-quoted
4+
Subject: [PATCH 02/11] feature: skip-quoted
55

66
---
77
PATCHES | 1 +
@@ -78,7 +78,7 @@ index 0000000..e9b0ac3
7878
+ * Richard Russon <rich@flatcap.org>
7979
+
8080
diff --git a/doc/manual.xml.head b/doc/manual.xml.head
81-
index 82459b8..4637b82 100644
81+
index 239f955..e5c4a66 100644
8282
--- a/doc/manual.xml.head
8383
+++ b/doc/manual.xml.head
8484
@@ -10640,6 +10640,127 @@ <sect1 id="sidebar">
@@ -238,27 +238,27 @@ index c4a77ca..94640b3 100644
238238
WHERE short Timeout;
239239
WHERE short Wrap;
240240
diff --git a/init.h b/init.h
241-
index 292bdc7..6996359 100644
241+
index 71d170c..b46a3ea 100644
242242
--- a/init.h
243243
+++ b/init.h
244-
@@ -2848,6 +2848,12 @@ struct option_t MuttVars[] = {
244+
@@ -2849,6 +2849,12 @@ struct option_t MuttVars[] = {
245245
** replacing ``%s'' with the supplied string.
246246
** For the default value, ``joe'' would be expanded to: ``~f joe | ~s joe''.
247247
*/
248248
+ { "skip_quoted_offset", DT_NUM, R_NONE, UL &SkipQuotedOffset, 0 },
249249
+ /*
250250
+ ** .pp
251251
+ ** Lines of quoted text that are displayed before the unquoted text after
252-
+ ** 'skip to quoted' command (S)
252+
+ ** "skip to quoted" command (S)
253253
+ */
254254
{ "sleep_time", DT_NUM, R_NONE, UL &SleepTime, 1 },
255255
/*
256256
** .pp
257257
diff --git a/pager.c b/pager.c
258-
index 94dcdd8..03f231e 100644
258+
index b4b8889..d4697ba 100644
259259
--- a/pager.c
260260
+++ b/pager.c
261-
@@ -2292,11 +2292,11 @@ search_next:
261+
@@ -2289,11 +2289,11 @@ search_next:
262262
int dretval = 0;
263263
int new_topline = topline;
264264

@@ -272,7 +272,7 @@ index 94dcdd8..03f231e 100644
272272
new_topline++;
273273

274274
if (dretval < 0)
275-
@@ -2305,11 +2305,11 @@ search_next:
275+
@@ -2302,11 +2302,11 @@ search_next:
276276
break;
277277
}
278278

features-extra/0010-feature-status-color.patch renamed to features-extra/0003-feature-status-color.patch

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
From 1cad34f8043331f0845ad1760f4472950c5359aa Mon Sep 17 00:00:00 2001
1+
From 49da143a1ea385aa80f9d385c21b94844a388cc7 Mon Sep 17 00:00:00 2001
22
From: Richard Russon <rich@flatcap.org>
33
Date: Tue, 24 May 2016 17:22:39 +0100
4-
Subject: [PATCH 10/18] feature: status-color
4+
Subject: [PATCH 03/11] feature: status-color
55

66
---
77
PATCHES | 1 +
@@ -197,7 +197,7 @@ index e2ff989..0efc743 100644
197197
}
198198
else if (object == MT_COLOR_QUOTED)
199199
diff --git a/curs_main.c b/curs_main.c
200-
index a241fe6..d23f33c 100644
200+
index f6f5550..0b660ea 100644
201201
--- a/curs_main.c
202202
+++ b/curs_main.c
203203
@@ -482,6 +482,112 @@ static void resort_index (MUTTMENU *menu)
@@ -315,15 +315,15 @@ index a241fe6..d23f33c 100644
315315
{ N_("Del"), OP_DELETE },
316316
@@ -667,7 +773,7 @@ int mutt_index_menu (void)
317317
#ifdef USE_SIDEBAR
318-
sb_set_buffystats (Context);
318+
mutt_sb_set_buffystats (Context);
319319
#endif
320320
- mutt_paddstr (COLS, buf);
321321
+ mutt_draw_statusline (COLS, buf);
322322
NORMAL_COLOR;
323323
menu->redraw &= ~REDRAW_STATUS;
324324
if (option(OPTTSENABLED) && TSSupported)
325325
diff --git a/doc/manual.xml.head b/doc/manual.xml.head
326-
index 4637b82..6417cf6 100644
326+
index e5c4a66..633ac6a 100644
327327
--- a/doc/manual.xml.head
328328
+++ b/doc/manual.xml.head
329329
@@ -10761,6 +10761,209 @@ <sect1 id="skip-quoted-patch">
@@ -592,7 +592,7 @@ index 0000000..385396f
592592
+
593593
+# vim: syntax=muttrc
594594
diff --git a/mutt_curses.h b/mutt_curses.h
595-
index 6f63160..514f12d 100644
595+
index 75ea85a..69d06c5 100644
596596
--- a/mutt_curses.h
597597
+++ b/mutt_curses.h
598598
@@ -142,6 +142,7 @@ enum
@@ -603,7 +603,7 @@ index 6f63160..514f12d 100644
603603
char *pattern;
604604
pattern_t *color_pattern; /* compiled pattern to speed up index color
605605
calculation */
606-
@@ -188,6 +189,7 @@ extern int ColorQuoteUsed;
606+
@@ -192,6 +193,7 @@ extern int ColorQuoteUsed;
607607
extern int ColorDefs[];
608608
extern COLOR_LINE *ColorHdrList;
609609
extern COLOR_LINE *ColorBodyList;
@@ -612,10 +612,10 @@ index 6f63160..514f12d 100644
612612

613613
void ci_init_color (void);
614614
diff --git a/pager.c b/pager.c
615-
index 03f231e..5865eb3 100644
615+
index d4697ba..227727e 100644
616616
--- a/pager.c
617617
+++ b/pager.c
618-
@@ -1833,13 +1833,13 @@ mutt_pager (const char *banner, const char *fname, int flags, pager_t *extra)
618+
@@ -1830,13 +1830,13 @@ mutt_pager (const char *banner, const char *fname, int flags, pager_t *extra)
619619
size_t l2 = sizeof (buffer);
620620
hfi.hdr = (IsHeader (extra)) ? extra->hdr : extra->bdy->hdr;
621621
mutt_make_string_info (buffer, l1 < l2 ? l1 : l2, NONULL (PagerFmt), &hfi, M_FORMAT_MAKEPRINT);

features-extra/0011-feature-index-color.patch renamed to features-extra/0004-feature-index-color.patch

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
From 52b2949e1065d6a1b22cdd0411b4a5252c26fad4 Mon Sep 17 00:00:00 2001
1+
From 7285e297e987b92ca5d66ce23116b9b22fbb7475 Mon Sep 17 00:00:00 2001
22
From: Richard Russon <rich@flatcap.org>
33
Date: Tue, 24 May 2016 17:26:21 +0100
4-
Subject: [PATCH 11/18] feature: index-color
4+
Subject: [PATCH 04/11] feature: index-color
55

66
---
77
PATCHES | 1 +
@@ -377,7 +377,7 @@ index 1ab6d2d..eb06c36 100644
377377
{
378378
k = (k == (size_t)(-1)) ? 1 : n;
379379
diff --git a/doc/manual.xml.head b/doc/manual.xml.head
380-
index 6417cf6..2011d8b 100644
380+
index 633ac6a..acdb199 100644
381381
--- a/doc/manual.xml.head
382382
+++ b/doc/manual.xml.head
383383
@@ -3259,7 +3259,7 @@ <sect1 id="color">
@@ -999,7 +999,7 @@ index 0d332bd..7fbc357 100644
999999
break;
10001000

10011001
diff --git a/menu.c b/menu.c
1002-
index 8eed91c..7839205 100644
1002+
index 6b58e1f..ab9a066 100644
10031003
--- a/menu.c
10041004
+++ b/menu.c
10051005
@@ -30,7 +30,39 @@
@@ -1128,7 +1128,7 @@ index 765f8f5..51c9e51 100644
11281128
#define M_THREAD_UNCOLLAPSE (1<<1)
11291129
#define M_THREAD_GET_HIDDEN (1<<2)
11301130
diff --git a/mutt_curses.h b/mutt_curses.h
1131-
index 514f12d..254b768 100644
1131+
index 69d06c5..9c4eeb1 100644
11321132
--- a/mutt_curses.h
11331133
+++ b/mutt_curses.h
11341134
@@ -125,7 +125,6 @@ enum
@@ -1157,7 +1157,7 @@ index 514f12d..254b768 100644
11571157
MT_COLOR_MAX
11581158
};
11591159

1160-
@@ -191,6 +201,9 @@ extern COLOR_LINE *ColorHdrList;
1160+
@@ -195,6 +205,9 @@ extern COLOR_LINE *ColorHdrList;
11611161
extern COLOR_LINE *ColorBodyList;
11621162
extern COLOR_LINE *ColorStatusList;
11631163
extern COLOR_LINE *ColorIndexList;
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
From 9abb4322baff8808b1104b8c35d45fe2b149f8ee Mon Sep 17 00:00:00 2001
1+
From b688e28e93b55041fb5e96f554eeb71ed984c454 Mon Sep 17 00:00:00 2001
22
From: Richard Russon <rich@flatcap.org>
33
Date: Tue, 24 May 2016 17:27:07 +0100
4-
Subject: [PATCH 12/18] feature: tls sni
4+
Subject: [PATCH 05/11] feature: tls sni
55

66
---
77
PATCHES | 1 +
@@ -125,7 +125,7 @@ index 0000000..7ff94d8
125125
+ * Richard Russon <rich@flatcap.org>
126126
+
127127
diff --git a/doc/manual.xml.head b/doc/manual.xml.head
128-
index 2011d8b..cf7c0a6 100644
128+
index acdb199..e5c5098 100644
129129
--- a/doc/manual.xml.head
130130
+++ b/doc/manual.xml.head
131131
@@ -11216,6 +11216,113 @@ <sect1 id="status-color">

features-extra/0013-feature-quasi-delete.patch renamed to features-extra/0006-feature-quasi-delete.patch

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
From c50e03c7c53ff378749a2b3cd77af45d558c85ad Mon Sep 17 00:00:00 2001
1+
From 0638e30b5d7e88bf629f416061cade677cf2efbe Mon Sep 17 00:00:00 2001
22
From: Richard Russon <rich@flatcap.org>
33
Date: Tue, 24 May 2016 17:28:23 +0100
4-
Subject: [PATCH 13/18] feature: quasi-delete
4+
Subject: [PATCH 06/11] feature: quasi-delete
55

66
---
77
OPS | 1 +
@@ -96,7 +96,7 @@ index 0000000..2a47346
9696
+ * Richard Russon <rich@flatcap.org>
9797
+
9898
diff --git a/curs_main.c b/curs_main.c
99-
index d23f33c..1d5d8c1 100644
99+
index 0b660ea..56821e9 100644
100100
--- a/curs_main.c
101101
+++ b/curs_main.c
102102
@@ -1293,6 +1293,20 @@ int mutt_index_menu (void)
@@ -121,7 +121,7 @@ index d23f33c..1d5d8c1 100644
121121
case OP_SIDEBAR_OPEN:
122122
#endif
123123
diff --git a/doc/manual.xml.head b/doc/manual.xml.head
124-
index cf7c0a6..d5ea867 100644
124+
index e5c5098..76022ae 100644
125125
--- a/doc/manual.xml.head
126126
+++ b/doc/manual.xml.head
127127
@@ -10429,6 +10429,126 @@ <sect1 id="progress">
@@ -308,10 +308,10 @@ index 51c9e51..40e2de6 100644
308308
unsigned int attach_del : 1; /* has an attachment marked for deletion */
309309
unsigned int old : 1;
310310
diff --git a/mx.c b/mx.c
311-
index 60c1ec1..17f9222 100644
311+
index 4a2ca3c..6ee50ad 100644
312312
--- a/mx.c
313313
+++ b/mx.c
314-
@@ -1136,9 +1136,10 @@ void mx_update_tables(CONTEXT *ctx, int committing)
314+
@@ -1137,9 +1137,10 @@ void mx_update_tables(CONTEXT *ctx, int committing)
315315
#define this_body ctx->hdrs[j]->content
316316
for (i = 0, j = 0; i < ctx->msgcount; i++)
317317
{

features-extra/0014-feature-fmemopen.patch renamed to features-extra/0007-feature-fmemopen.patch

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
From 31ae63b3c80f41e5c8a93cbcbf635819007e93a5 Mon Sep 17 00:00:00 2001
1+
From a70fdf7a25630b9c53275214dcf5a816f7fa0b51 Mon Sep 17 00:00:00 2001
22
From: Richard Russon <rich@flatcap.org>
33
Date: Tue, 24 May 2016 17:29:02 +0100
4-
Subject: [PATCH 14/18] feature: fmemopen
4+
Subject: [PATCH 07/11] feature: fmemopen
55

66
---
77
PATCHES | 1 +
@@ -78,10 +78,10 @@ index 0000000..adab594
7878
+ * Richard Russon <rich@flatcap.org>
7979
+
8080
diff --git a/configure.ac b/configure.ac
81-
index 54a7400..1fe1932 100644
81+
index 6bf08a1..50c2666 100644
8282
--- a/configure.ac
8383
+++ b/configure.ac
84-
@@ -1325,6 +1325,8 @@ if test $mutt_cv_langinfo_yesexpr = yes; then
84+
@@ -1324,6 +1324,8 @@ if test $mutt_cv_langinfo_yesexpr = yes; then
8585
AC_DEFINE(HAVE_LANGINFO_YESEXPR,1,[ Define if you have <langinfo.h> and nl_langinfo(YESEXPR). ])
8686
fi
8787

@@ -91,7 +91,7 @@ index 54a7400..1fe1932 100644
9191
have_openjade="no"
9292
AC_PATH_PROG([OSPCAT], [ospcat], [none])
9393
diff --git a/doc/manual.xml.head b/doc/manual.xml.head
94-
index d5ea867..4c4936d 100644
94+
index 76022ae..a1689b2 100644
9595
--- a/doc/manual.xml.head
9696
+++ b/doc/manual.xml.head
9797
@@ -9581,6 +9581,109 @@ <sect1 id="cond-date">

features-extra/0015-feature-limit-current-thread.patch renamed to features-extra/0008-feature-limit-current-thread.patch

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
From 13838fd3c32af1dae94773a6f4d195f575b56355 Mon Sep 17 00:00:00 2001
1+
From 028adbd1d14b431e5e8a81fd9a08fcde51e1b9f4 Mon Sep 17 00:00:00 2001
22
From: Richard Russon <rich@flatcap.org>
33
Date: Tue, 24 May 2016 17:29:47 +0100
4-
Subject: [PATCH 15/18] feature: limit-current-thread
4+
Subject: [PATCH 08/11] feature: limit-current-thread
55

66
---
77
OPS | 1 +
@@ -90,7 +90,7 @@ index 0000000..072413e
9090
+ * Richard Russon <rich@flatcap.org>
9191
+
9292
diff --git a/curs_main.c b/curs_main.c
93-
index 1d5d8c1..8b84c48 100644
93+
index 56821e9..109f42a 100644
9494
--- a/curs_main.c
9595
+++ b/curs_main.c
9696
@@ -1044,12 +1044,14 @@ int mutt_index_menu (void)
@@ -110,7 +110,7 @@ index 1d5d8c1..8b84c48 100644
110110
if (menu->oldcurrent >= 0)
111111
{
112112
diff --git a/doc/manual.xml.head b/doc/manual.xml.head
113-
index 4c4936d..6eba963 100644
113+
index a1689b2..0e17cf4 100644
114114
--- a/doc/manual.xml.head
115115
+++ b/doc/manual.xml.head
116116
@@ -10197,6 +10197,125 @@ <sect1 id="initials">

0 commit comments

Comments
 (0)