Skip to content

Commit

Permalink
Remove else for unicode handling
Browse files Browse the repository at this point in the history
  • Loading branch information
drashna committed Dec 6, 2018
1 parent fadc218 commit 0f52426
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions quantum/quantum_keycodes.h
Original file line number Diff line number Diff line change
Expand Up @@ -683,15 +683,10 @@ enum quantum_keycodes {
// To have a key that sends out Œ, go UC(0x0152)
#define UNICODE(n) (QK_UNICODE | (n))
#define UC(n) UNICODE(n)
#else
#define UNICODE(n) KC_NO
#define UC(n) KC_NO
#endif

#ifdef UNICODEMAP_ENABLE
#define X(n) (QK_UNICODE_MAP | (n))
#else
#define X(n) KC_NO
#endif

#define UC_MOD UNICODE_MODE_FORWARD
Expand Down

0 comments on commit 0f52426

Please sign in to comment.