~ruther/qmk_firmware

61b71320f79a663880bd70402d306722c1bbfe3e — QMK Bot 5 years ago b949343
format code according to conventions [skip ci]
1 files changed, 3 insertions(+), 4 deletions(-)

M tmk_core/common/action_tapping.c
M tmk_core/common/action_tapping.c => tmk_core/common/action_tapping.c +3 -4
@@ 122,13 122,12 @@ bool process_tapping(keyrecord_t *keyp) {
#    if defined(TAPPING_TERM_PER_KEY) || (TAPPING_TERM >= 500) || defined(PERMISSIVE_HOLD) || defined(PERMISSIVE_HOLD_PER_KEY)
                else if (
#        ifdef TAPPING_TERM_PER_KEY
                         (get_tapping_term(get_event_keycode(tapping_key.event)) >= 500) &&
                    (get_tapping_term(get_event_keycode(tapping_key.event)) >= 500) &&
#        endif
#        ifdef PERMISSIVE_HOLD_PER_KEY
                         !get_permissive_hold(get_event_keycode(tapping_key.event), keyp) &&
                    !get_permissive_hold(get_event_keycode(tapping_key.event), keyp) &&
#        endif
                         IS_RELEASED(event) && waiting_buffer_typed(event))
                {
                    IS_RELEASED(event) && waiting_buffer_typed(event)) {
                    debug("Tapping: End. No tap. Interfered by typing key\n");
                    process_record(&tapping_key);
                    tapping_key = (keyrecord_t){};