aboutsummaryrefslogtreecommitdiffstats
path: root/commands.h
diff options
context:
space:
mode:
authorNRK <nrk@disroot.org>2022-06-15 09:42:34 +0200
committerGitea <gitea@fake.local>2022-06-25 08:27:01 +0200
commitb28449e10c92c304434645872199d8f8cb2448b4 (patch)
tree5dd7f6ae840823a5e14f435782acfcad0e012344 /commands.h
parentf23d57d4ada2dbab52e26073d462ebee57cf53a9 (diff)
downloadnsxiv-b28449e10c92c304434645872199d8f8cb2448b4.tar.zst
fix: don't use reserved identifiers
identifiers beginning with an underscore is reserved by the C standard.
Diffstat (limited to 'commands.h')
-rw-r--r--commands.h2
1 files changed, 1 insertions, 1 deletions
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 }