1
0
Fork 0

Remove useless line continuations (#19399)

This commit is contained in:
Ryan 2022-12-30 11:48:05 +11:00 committed by GitHub
parent 2b61cc739f
commit 801d2ff940
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
481 changed files with 8637 additions and 8723 deletions

View file

@ -164,21 +164,21 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
case CU_2:
NORM_ALGR(DK_2, KC_NUHS)
case CU_4:
if (record->event.pressed) { \
timer_timeout(); \
if (lshift || rshift) { \
register_code(KC_LSFT); \
register_code(KC_ALGR); \
unregister_code(KC_3); \
tap_code(KC_3); \
unregister_code(KC_3); \
} else { \
unregister_code(KC_4); \
tap_code(KC_4); \
} \
unregister_code(KC_ALGR); \
unregister_code(KC_LSFT); \
} \
if (record->event.pressed) {
timer_timeout();
if (lshift || rshift) {
register_code(KC_LSFT);
register_code(KC_ALGR);
unregister_code(KC_3);
tap_code(KC_3);
unregister_code(KC_3);
} else {
unregister_code(KC_4);
tap_code(KC_4);
}
unregister_code(KC_ALGR);
unregister_code(KC_LSFT);
}
return false;
case CU_6:
SHIFT_NORM(DK_6, KC_RBRC)