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 |