]> granicus.if.org Git - neomutt/commitdiff
restore ignore_linear_white_space option
authorRichard Russon <rich@flatcap.org>
Thu, 15 Mar 2018 20:21:33 +0000 (20:21 +0000)
committerRichard Russon <rich@flatcap.org>
Thu, 15 Mar 2018 20:21:34 +0000 (20:21 +0000)
This is a dummy option -- it's not needed any more.
In the future this and several other options will be deprecated and
removed.

doc/neomutt.man
doc/smime_keys.1
init.h

index 2107fe6a2f28536999d2dce2946434a43afe8556..37a0eeecbba590c12c7aef08b3f330db9e4c8a84 100644 (file)
@@ -20,7 +20,7 @@
 .TH neomutt 1 "January 2009" Unix "User Manuals"
 .SH NAME
 neomutt \- The Neomutt Mail User Agent
-.SH SYNOPSIS
+.SH SYNTAX
 .PP
 .B neomutt
 [\-GnRyzZ]
index 5a7ac4d46b67a4181eba9618e7125b1136ef2f24..171261c315ca8d2f087006da4c5353c1dd0a77cd 100644 (file)
@@ -22,7 +22,7 @@
 .TH smime_keys 1 "May 2009" Unix "User Manuals"
 .SH "NAME"
 smime_keys \- Utility to add S/MIME certificate to the internal database used by neomutt
-.SH SYNOPSIS
+.SH SYNTAX
 .PP
 .B smime_keys
 <operation>  [file(s) | keyID [file(s)]]
diff --git a/init.h b/init.h
index e1528655bf110de4f7d130ede12cc43f741e1d90..6a01b9a73275a59a6a2a1f41d10cc6028e5a31f6 100644 (file)
--- a/init.h
+++ b/init.h
@@ -82,6 +82,9 @@
 #define ISPELL "ispell"
 #endif
 
+/* This option is deprecated */
+bool IgnoreLinearWhiteSpace = false;
+
 struct Option MuttVars[] = {
   /*++*/
 
@@ -4378,9 +4381,10 @@ struct Option MuttVars[] = {
   */
   /*--*/
 
-  { "pgp_encrypt_self",   DT_QUAD,    R_NONE,  UL &PgpEncryptSelf,   MUTT_NO },
-  { "smime_encrypt_self", DT_QUAD,    R_NONE,  UL &SmimeEncryptSelf, MUTT_NO },
-  { "wrapmargin",         DT_NUMBER,  R_PAGER, UL &Wrap,             0 },
+  { "ignore_linear_white_space", DT_BOOL,   R_NONE,  UL &IgnoreLinearWhiteSpace, 0       },
+  { "pgp_encrypt_self",          DT_QUAD,   R_NONE,  UL &PgpEncryptSelf,         MUTT_NO },
+  { "smime_encrypt_self",        DT_QUAD,   R_NONE,  UL &SmimeEncryptSelf,       MUTT_NO },
+  { "wrapmargin",                DT_NUMBER, R_PAGER, UL &Wrap,                   0       },
   /*
   ** .pp
   ** (DEPRECATED) Equivalent to setting $$wrap with a negative value.