diff options
| author | Jack Humbert <jack.humb@gmail.com> | 2016-08-15 12:19:01 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-08-15 12:19:01 -0400 |
| commit | cc7acfb416d446a123d10d2c33c3344f1f684f1b (patch) | |
| tree | 5bd1d52f6a727aa4db5eda54979a1621d924ec14 /quantum/quantum.c | |
| parent | bc8976d27781a45c735eb98d3110e7df6f8a0bad (diff) | |
| parent | e8845f0daf8dc7a7674dc5420cc5a684bbbea09b (diff) | |
| download | qmk_firmware-cc7acfb416d446a123d10d2c33c3344f1f684f1b.tar.gz qmk_firmware-cc7acfb416d446a123d10d2c33c3344f1f684f1b.zip | |
Merge pull request #635 from algernon/f/ucis
Symbolic Unicode Input System
Diffstat (limited to 'quantum/quantum.c')
| -rw-r--r-- | quantum/quantum.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/quantum/quantum.c b/quantum/quantum.c index bc2da510f..a4c5c2ddb 100644 --- a/quantum/quantum.c +++ b/quantum/quantum.c | |||
| @@ -87,6 +87,9 @@ bool process_record_quantum(keyrecord_t *record) { | |||
| 87 | #ifdef UNICODE_ENABLE | 87 | #ifdef UNICODE_ENABLE |
| 88 | process_unicode(keycode, record) && | 88 | process_unicode(keycode, record) && |
| 89 | #endif | 89 | #endif |
| 90 | #ifdef UCIS_ENABLE | ||
| 91 | process_ucis(keycode, record) && | ||
| 92 | #endif | ||
| 90 | true)) { | 93 | true)) { |
| 91 | return false; | 94 | return false; |
| 92 | } | 95 | } |
