summaryrefslogtreecommitdiffstats
path: root/tmk_core/common/command.c
diff options
context:
space:
mode:
authorChristopher Browne <cbbrowne@ca.afilias.info>2016-06-21 23:54:12 +0200
committerChristopher Browne <cbbrowne@ca.afilias.info>2016-06-21 23:54:12 +0200
commitee3c7892ad585e2e702d8975420d25ae052d97bb (patch)
tree71c23600099fe5670482f8900d787dbc7c9551b2 /tmk_core/common/command.c
parent2d314810086684883329af730d8f5e8ecd0506b0 (diff)
parent1a0bac8bccf0e156d2f3c5f14a7214f9677b6370 (diff)
downloadqmk_firmware-ee3c7892ad585e2e702d8975420d25ae052d97bb.tar.gz
qmk_firmware-ee3c7892ad585e2e702d8975420d25ae052d97bb.tar.xz
Merge branch 'master' of https://github.com/jackhumbert/qmk_firmware
Diffstat (limited to 'tmk_core/common/command.c')
-rw-r--r--tmk_core/common/command.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/tmk_core/common/command.c b/tmk_core/common/command.c
index 024d7c67a..187a2b949 100644
--- a/tmk_core/common/command.c
+++ b/tmk_core/common/command.c
@@ -66,7 +66,6 @@ static bool mousekey_console(uint8_t code);
static void mousekey_console_help(void);
#endif
-static uint8_t numkey2num(uint8_t code);
static void switch_default_layer(uint8_t layer);
@@ -763,7 +762,7 @@ static bool mousekey_console(uint8_t code)
/***********************************************************
* Utilities
***********************************************************/
-static uint8_t numkey2num(uint8_t code)
+uint8_t numkey2num(uint8_t code)
{
switch (code) {
case KC_1: return 1;