View | Details | Raw Unified | Return to bug 268208
Collapse All | Expand All

(-)b/mail/mutt/Makefile (+1 lines)
Lines 173-178 NLS_CONFIGURE_ENABLE= nls Link Here
173
173
174
QUOTE_PATCH_PATCHFILES=	patch-${VVV_PATCH_VERSION}.vvv.initials.xz:vvv \
174
QUOTE_PATCH_PATCHFILES=	patch-${VVV_PATCH_VERSION}.vvv.initials.xz:vvv \
175
			mutt-${GREETING_PATCH_VERSION}.vvv.quote:vc
175
			mutt-${GREETING_PATCH_VERSION}.vvv.quote:vc
176
QUOTE_PATCH_EXTRA_PATCHES=	${PATCHDIR}/extra-patch-quote
176
177
177
REVERSE_REPLY_PATCH_EXTRA_PATCHES=	${PATCHDIR}/extra-patch-reverse_reply
178
REVERSE_REPLY_PATCH_EXTRA_PATCHES=	${PATCHDIR}/extra-patch-reverse_reply
178
179
(-)b/mail/mutt/files/extra-patch-quote (+18 lines)
Added Link Here
1
--- init.h.orig	2022-09-14 14:12:12 UTC
2
+++ init.h
3
@@ -3163,13 +3163,13 @@ struct option_t MuttVars[] = {
4
   ** have no effect, and if it is set to \fIask-yes\fP or \fIask-no\fP, you are
5
   ** prompted for confirmation when you try to quit.
6
   */
7
-  { "quote_empty",	DT_BOOL, R_NONE, OPTQUOTEEMPTY, 1 },
8
+  { "quote_empty",	DT_BOOL, R_NONE, {.l=OPTQUOTEEMPTY}, {.l=1} },
9
   /*
10
   ** .pp
11
   ** Controls whether or not empty lines will be quoted using
12
   ** ``$indent_string''.
13
   */
14
-  { "quote_quoted",	DT_BOOL, R_NONE, OPTQUOTEQUOTED, 0 },
15
+  { "quote_quoted",	DT_BOOL, R_NONE, {.l=OPTQUOTEQUOTED}, {.l=0} },
16
   /*
17
   ** .pp
18
   ** Controls how quoted lines will be quoted. If set, one quote

Return to bug 268208