aboutsummaryrefslogtreecommitdiff
path: root/common/action.c
diff options
context:
space:
mode:
Diffstat (limited to 'common/action.c')
-rw-r--r--common/action.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/common/action.c b/common/action.c
index 294ce00fb..fc8818030 100644
--- a/common/action.c
+++ b/common/action.c
@@ -23,8 +23,9 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
23#include "command.h" 23#include "command.h"
24#include "util.h" 24#include "util.h"
25#include "debug.h" 25#include "debug.h"
26#include "action.h"
27#include "layer_switch.h" 26#include "layer_switch.h"
27#include "action_macro.h"
28#include "action.h"
28 29
29 30
30static void process_action(keyrecord_t *record); 31static void process_action(keyrecord_t *record);
@@ -671,7 +672,7 @@ static void process_action(keyrecord_t *record)
671 672
672 /* Extentions */ 673 /* Extentions */
673 case ACT_MACRO: 674 case ACT_MACRO:
674 // TODO 675 action_macro_play(action_get_macro(record, action.func.id, action.func.opt));
675 break; 676 break;
676 case ACT_COMMAND: 677 case ACT_COMMAND:
677 break; 678 break;