From b28449e10c92c304434645872199d8f8cb2448b4 Mon Sep 17 00:00:00 2001 From: NRK Date: Wed, 15 Jun 2022 13:42:34 +0600 Subject: fix: don't use reserved identifiers identifiers beginning with an underscore is reserved by the C standard. --- commands.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'commands.h') diff --git a/commands.h b/commands.h index 74e2638..c4c3973 100644 --- a/commands.h +++ b/commands.h @@ -44,7 +44,7 @@ bool ct_scroll(arg_t); bool ct_drag_mark_image(arg_t); bool ct_select(arg_t); -#ifdef _MAPPINGS_CONFIG +#ifdef INCLUDE_MAPPINGS_CONFIG /* global */ #define g_change_gamma { cg_change_gamma, MODE_ALL } #define g_first { cg_first, MODE_ALL } -- cgit v1.2.3