diff options
author | Priyadi Iman Nurcahyo <priyadi@priyadi.net> | 2016-10-10 00:46:20 +0700 |
---|---|---|
committer | Priyadi Iman Nurcahyo <priyadi@priyadi.net> | 2016-10-10 00:56:09 +0700 |
commit | 5b2e455d3b71bfb90754930d1f22d3e8ce98b927 (patch) | |
tree | f9c5e7f6920aa860407df4850dca7ee515a4be74 /quantum/quantum.c | |
parent | a9df99b81c787862dc3fa11bd854fe39e704da81 (diff) |
Unicode map framework. Allow unicode up to 0xFFFFF using separate
mapping table
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 a16bd5443c..098312e6ef 100644 --- a/quantum/quantum.c +++ b/quantum/quantum.c @@ -129,6 +129,9 @@ bool process_record_quantum(keyrecord_t *record) { #ifdef UCIS_ENABLE process_ucis(keycode, record) && #endif + #ifdef UNICODEMAP_ENABLE + process_unicode_map(keycode, record) && + #endif true)) { return false; } |