From: Max Kellermann Date: Wed, 10 Dec 2008 19:16:04 +0000 (+0100) Subject: command: disable check_key_bindings() with --enable-mini X-Git-Tag: release-0.13~72 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=0f32dbe7603ae08ed94a911887ec748892932682;p=ncmpc.git command: disable check_key_bindings() with --enable-mini Remove another superfluous feature from the ncmpc-mini mode. --- diff --git a/src/command.c b/src/command.c index 1b6519a..663ab7a 100644 --- a/src/command.c +++ b/src/command.c @@ -297,6 +297,8 @@ command_dump_keys(void) } } +#ifndef NCMPC_MINI + static int set_key_flags(command_definition_t *cp, command_t command, int flags) { @@ -314,6 +316,8 @@ set_key_flags(command_definition_t *cp, command_t command, int flags) return 1; } +#endif + const char * get_key_names(command_t command, int all) { @@ -434,7 +438,9 @@ assign_keys(command_t command, int keys[MAX_COMMAND_KEYS]) while (cmds[i].name) { if (cmds[i].command == command) { memcpy(cmds[i].keys, keys, sizeof(int)*MAX_COMMAND_KEYS); +#ifndef NCMPC_MINI cmds[i].flags |= COMMAND_KEY_MODIFIED; +#endif return 0; } i++; @@ -442,6 +448,8 @@ assign_keys(command_t command, int keys[MAX_COMMAND_KEYS]) return -1; } +#ifndef NCMPC_MINI + int check_key_bindings(command_definition_t *cp, char *buf, size_t bufsize) { @@ -529,3 +537,5 @@ write_key_bindings(FILE *f, int flags) return ferror(f); } + +#endif diff --git a/src/command.h b/src/command.h index ef1fee2..4df7a30 100644 --- a/src/command.h +++ b/src/command.h @@ -23,7 +23,10 @@ #include "config.h" #include + +#ifndef NCMPC_MINI #include +#endif #define MAX_COMMAND_KEYS 3 @@ -88,9 +91,11 @@ typedef enum { } command_t; +#ifndef NCMPC_MINI /* command definition flags */ #define COMMAND_KEY_MODIFIED 0x01 #define COMMAND_KEY_CONFLICT 0x02 +#endif /* write key bindings flags */ #define KEYDEF_WRITE_HEADER 0x01 @@ -112,9 +117,14 @@ command_definition_t *get_command_definitions(void); command_t find_key_command(int key, command_definition_t *cmds); void command_dump_keys(void); + +#ifndef NCMPC_MINI + int check_key_bindings(command_definition_t *cmds, char *buf, size_t size); int write_key_bindings(FILE *f, int all); +#endif + const char *key2str(int key); const char *get_key_description(command_t command); const char *get_key_command_name(command_t command); diff --git a/src/main.c b/src/main.c index 11f16ac..752ccdf 100644 --- a/src/main.c +++ b/src/main.c @@ -393,13 +393,13 @@ main(int argc, const char *argv[]) /* parse command line options - 1 pass get configuration files */ options_parse(argc, argv); - /* read configuration */ #ifndef NCMPC_MINI + /* read configuration */ read_configuration(); -#endif /* check key bindings */ check_key_bindings(NULL, NULL, 0); +#endif /* parse command line options - 2 pass */ options_parse(argc, argv); diff --git a/src/options.c b/src/options.c index 63674ef..8c62e4b 100644 --- a/src/options.c +++ b/src/options.c @@ -24,6 +24,7 @@ #include "conf.h" #include +#include #include #include