1
0

Add NO_ACTION_FUNCTION config option

This commit is contained in:
tmk 2013-03-20 00:37:32 +09:00
parent 25f4821ba8
commit da659f0b46

View File

@ -688,14 +688,18 @@ static void process_action(keyrecord_t *record)
#endif
/* Extentions */
#ifndef NO_ACTION_MACRO
case ACT_MACRO:
action_macro_play(action_get_macro(record, action.func.id, action.func.opt));
break;
#endif
case ACT_COMMAND:
break;
#ifndef NO_ACTION_FUNCTION
case ACT_FUNCTION:
action_function(record, action.func.id, action.func.opt);
break;
#endif
default:
break;
}