]> granicus.if.org Git - neomutt/commitdiff
fix justify constants
authorRichard Russon <rich@flatcap.org>
Fri, 24 Nov 2017 15:14:33 +0000 (15:14 +0000)
committerRichard Russon <rich@flatcap.org>
Sun, 26 Nov 2017 22:37:25 +0000 (22:37 +0000)
mutt.h

diff --git a/mutt.h b/mutt.h
index 2452ab577238951127453211d72c04f9698f03ab..97b3db31bd3ca16ede5edbfe4f15cdc33cb1e6fe 100644 (file)
--- a/mutt.h
+++ b/mutt.h
@@ -333,12 +333,9 @@ struct AttachMatch
 #define EXECSHELL "/bin/sh"
 
 /* For mutt_simple_format() justifications */
-/* Making left 0 and center -1 is of course completely nonsensical, but
- * it retains compatibility for any patches that call mutt_simple_format.
- * Once patches are updated to use FMT_*, these can be made sane. */
-#define FMT_LEFT   0
+#define FMT_LEFT   -1
+#define FMT_CENTER 0
 #define FMT_RIGHT  1
-#define FMT_CENTER -1
 
 /* Exit values used in send_msg() */
 #define S_ERR 127