From ac9fb18020d7e8bf16d02d45fbb02cf47328aaf7 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sat, 27 Apr 2019 13:04:13 +0200 Subject: patch 8.1.1210: support for user commands is spread out Problem: Support for user commands is spread out. No good reason to make user commands optional. Solution: Move user command support to usercmd.c. Always enable the user_commands feature. --- src/macros.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/macros.h') diff --git a/src/macros.h b/src/macros.h index 571fed0a7e..8c0e04a56c 100644 --- a/src/macros.h +++ b/src/macros.h @@ -336,3 +336,6 @@ (p) = NULL; \ } \ } while (0) + +/* Wether a command index indicates a user command. */ +#define IS_USER_CMDIDX(idx) ((int)(idx) < 0) -- cgit v1.2.3