diff options
Diffstat (limited to 'quantum/quantum.c')
| -rw-r--r-- | quantum/quantum.c | 19 |
1 files changed, 8 insertions, 11 deletions
diff --git a/quantum/quantum.c b/quantum/quantum.c index a57d4f89f..85db100ab 100644 --- a/quantum/quantum.c +++ b/quantum/quantum.c | |||
| @@ -243,7 +243,7 @@ bool process_record_quantum(keyrecord_t *record) { | |||
| 243 | process_key_lock(&keycode, record) && | 243 | process_key_lock(&keycode, record) && |
| 244 | #endif | 244 | #endif |
| 245 | #if defined(AUDIO_ENABLE) && defined(AUDIO_CLICKY) | 245 | #if defined(AUDIO_ENABLE) && defined(AUDIO_CLICKY) |
| 246 | process_clicky(keycode, record) && | 246 | process_clicky(keycode, record) && |
| 247 | #endif //AUDIO_CLICKY | 247 | #endif //AUDIO_CLICKY |
| 248 | process_record_kb(keycode, record) && | 248 | process_record_kb(keycode, record) && |
| 249 | #if defined(RGB_MATRIX_ENABLE) && defined(RGB_MATRIX_KEYPRESSES) | 249 | #if defined(RGB_MATRIX_ENABLE) && defined(RGB_MATRIX_KEYPRESSES) |
| @@ -258,33 +258,27 @@ bool process_record_quantum(keyrecord_t *record) { | |||
| 258 | #ifdef STENO_ENABLE | 258 | #ifdef STENO_ENABLE |
| 259 | process_steno(keycode, record) && | 259 | process_steno(keycode, record) && |
| 260 | #endif | 260 | #endif |
| 261 | #if ( defined(AUDIO_ENABLE) || (defined(MIDI_ENABLE) && defined(MIDI_BASIC))) && !defined(NO_MUSIC_MODE) | 261 | #if (defined(AUDIO_ENABLE) || (defined(MIDI_ENABLE) && defined(MIDI_BASIC))) && !defined(NO_MUSIC_MODE) |
| 262 | process_music(keycode, record) && | 262 | process_music(keycode, record) && |
| 263 | #endif | 263 | #endif |
| 264 | #ifdef TAP_DANCE_ENABLE | 264 | #ifdef TAP_DANCE_ENABLE |
| 265 | process_tap_dance(keycode, record) && | 265 | process_tap_dance(keycode, record) && |
| 266 | #endif | 266 | #endif |
| 267 | #if defined(UNICODE_ENABLE) || defined(UNICODEMAP_ENABLE) || defined(UCIS_ENABLE) | ||
| 268 | process_unicode_common(keycode, record) && | ||
| 269 | #endif | ||
| 267 | #ifdef LEADER_ENABLE | 270 | #ifdef LEADER_ENABLE |
| 268 | process_leader(keycode, record) && | 271 | process_leader(keycode, record) && |
| 269 | #endif | 272 | #endif |
| 270 | #ifdef COMBO_ENABLE | 273 | #ifdef COMBO_ENABLE |
| 271 | process_combo(keycode, record) && | 274 | process_combo(keycode, record) && |
| 272 | #endif | 275 | #endif |
| 273 | #ifdef UNICODE_ENABLE | ||
| 274 | process_unicode(keycode, record) && | ||
| 275 | #endif | ||
| 276 | #ifdef UCIS_ENABLE | ||
| 277 | process_ucis(keycode, record) && | ||
| 278 | #endif | ||
| 279 | #ifdef PRINTING_ENABLE | 276 | #ifdef PRINTING_ENABLE |
| 280 | process_printer(keycode, record) && | 277 | process_printer(keycode, record) && |
| 281 | #endif | 278 | #endif |
| 282 | #ifdef AUTO_SHIFT_ENABLE | 279 | #ifdef AUTO_SHIFT_ENABLE |
| 283 | process_auto_shift(keycode, record) && | 280 | process_auto_shift(keycode, record) && |
| 284 | #endif | 281 | #endif |
| 285 | #ifdef UNICODEMAP_ENABLE | ||
| 286 | process_unicode_map(keycode, record) && | ||
| 287 | #endif | ||
| 288 | #ifdef TERMINAL_ENABLE | 282 | #ifdef TERMINAL_ENABLE |
| 289 | process_terminal(keycode, record) && | 283 | process_terminal(keycode, record) && |
| 290 | #endif | 284 | #endif |
| @@ -1010,6 +1004,9 @@ void matrix_init_quantum() { | |||
| 1010 | #ifdef ENCODER_ENABLE | 1004 | #ifdef ENCODER_ENABLE |
| 1011 | encoder_init(); | 1005 | encoder_init(); |
| 1012 | #endif | 1006 | #endif |
| 1007 | #if defined(UNICODE_ENABLE) || defined(UNICODEMAP_ENABLE) || defined(UCIS_ENABLE) | ||
| 1008 | unicode_input_mode_init(); | ||
| 1009 | #endif | ||
| 1013 | matrix_init_kb(); | 1010 | matrix_init_kb(); |
| 1014 | } | 1011 | } |
| 1015 | 1012 | ||
