From 71676342c14620501c78e14b2d09894973229059 Mon Sep 17 00:00:00 2001 From: Richard Russon Date: Fri, 24 Nov 2017 15:14:33 +0000 Subject: [PATCH] fix justify constants --- mutt.h | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/mutt.h b/mutt.h index 2452ab577..97b3db31b 100644 --- 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 -- 2.49.0