From: Richard Russon Date: Thu, 19 Sep 2019 17:13:53 +0000 (+0100) Subject: config: expand flags typedef X-Git-Tag: 2019-10-25~36^2~11 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ef33e32dde8e97f94f1f2731ed52ab9a26cadc92;p=neomutt config: expand flags typedef The recent addition, CS_DUMP_SHOW_DEPRECATED, didn't fit into the flags' typedef. --- diff --git a/config/dump.h b/config/dump.h index 9dd635e46..f1a0ca324 100644 --- a/config/dump.h +++ b/config/dump.h @@ -31,7 +31,7 @@ struct Buffer; struct ConfigSet; struct HashElem; -typedef uint8_t ConfigDumpFlags; ///< Flags for dump_config(), e.g. #CS_DUMP_ONLY_CHANGED +typedef uint16_t ConfigDumpFlags; ///< Flags for dump_config(), e.g. #CS_DUMP_ONLY_CHANGED #define CS_DUMP_NO_FLAGS 0 ///< No flags are set #define CS_DUMP_ONLY_CHANGED (1 << 0) ///< Only show config that the user has changed #define CS_DUMP_HIDE_SENSITIVE (1 << 1) ///< Obscure sensitive information like passwords