Skip to content

Commit

Permalink
core: Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
tmk committed Apr 11, 2017
1 parent 4c2f858 commit 257539a
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion common/unimap.h
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,25 @@ KANA: Japanese かな(Hiragana/Katakana)
AC_##K78, AC_##K79, AC_##K7A, AC_##K7B, AC_##K7C, AC_##K7D, AC_##K7E, AC_##K7F } /* 78-7F */ \
}


/* Matrix poision for Universal 128-key keyboard
,-----------------------------------------------.
| 68| 69| 6A| 6B| 6C| 6D| 6E| 6F| 70| 71| 72| 73|
,---. |-----------------------------------------------| ,-----------. ,-----------.
| 29| | 3A| 3B| 3C| 3D| 3E| 3F| 40| 41| 42| 43| 44| 45| | 46| 47| 48| | 01| 02| 03|
`---' `-----------------------------------------------' `-----------' `-----------'
,-----------------------------------------------------------. ,-----------. ,---------------.
| 35| 1E| 1F| 20| 21| 22| 23| 24| 25| 26| 27| 2D| 2E| 74| 2A| | 49| 4A| 4B| | 53| 54| 55| 56|
|-----------------------------------------------------------| |-----------| |---------------|
| 2B| 14| 1A| 08| 15| 17| 1C| 18| 0C| 12| 13| 2F| 30| 31| | 4C| 4D| 4E| | 5F| 60| 61| 57|
|-----------------------------------------------------------| `-----------' |---------------|
| 39| 04| 16| 07| 09| 0A| 0B| 0D| 0E| 0F| 33| 34| 32| 28| | 5C| 5D| 5E| 66|
|-----------------------------------------------------------| ,---. |---------------|
| 79| 64| 1D| 1B| 06| 19| 05| 11| 10| 36| 37| 38| 75| 7D| | 52| | 59| 5A| 5B| 58|
|-----------------------------------------------------------| ,-----------. |---------------|
| 78| 7B| 7A| 77| 2C| 76| 00| 7E| 7F| 65| 7C| | 50| 51| 4F| | 62| 63| 67|
`-----------------------------------------------------------' `-----------' `---------------'
*/
// Universal map position codes
enum unimap_position_codes {
// logical name position(row << 4 | col)
Expand Down Expand Up @@ -127,7 +146,7 @@ enum unimap_position_codes {
UNIMAP_LBRACKET, // 0x2F
UNIMAP_RBRACKET, // 0x30
UNIMAP_BSLASH, // 0x31
UNIMAP_NONUS_HASH, // 0x32 ISO UK hasu
UNIMAP_NONUS_HASH, // 0x32 ISO UK hash
UNIMAP_SCOLON, // 0x33
UNIMAP_QUOTE, // 0x34
UNIMAP_GRAVE, // 0x35
Expand Down

0 comments on commit 257539a

Please sign in to comment.