diff options
| author | cinap_lenrek <cinap_lenrek@felloff.net> | 2015-04-01 12:15:54 +0200 |
|---|---|---|
| committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2015-04-01 12:15:54 +0200 |
| commit | 736df3bd6ccb239a742865427d1aa48c18468b20 (patch) | |
| tree | fc5114b3f7534c6245a9ec87f6a0a1f21a6720c2 | |
| parent | 3b08fd07698b041b55d1bf465e77f29d6eec1951 (diff) | |
| download | plan9front-736df3bd6ccb239a742865427d1aa48c18468b20.tar.xz | |
devkbd: remove unused constants
| -rw-r--r-- | sys/src/9/pc/devkbd.c | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/sys/src/9/pc/devkbd.c b/sys/src/9/pc/devkbd.c index f951f8b52..827266cc3 100644 --- a/sys/src/9/pc/devkbd.c +++ b/sys/src/9/pc/devkbd.c @@ -23,40 +23,6 @@ enum { Parity= 0x80, Cmd= 0x64, /* command port (write only) */ - - Spec= 0xF800, /* Unicode private space */ - PF= Spec|0x20, /* num pad function key */ - View= Spec|0x00, /* view (shift window up) */ - KF= 0xF000, /* function key (begin Unicode private space) */ - Shift= Spec|0x60, - Break= Spec|0x61, - Ctrl= Spec|0x62, - Latin= Spec|0x63, - Caps= Spec|0x64, - Num= Spec|0x65, - Middle= Spec|0x66, - Altgr= Spec|0x67, - Kmouse= Spec|0x100, - No= 0x00, /* peter */ - - Home= KF|13, - Up= KF|14, - Pgup= KF|15, - Print= KF|16, - Left= KF|17, - Right= KF|18, - End= KF|24, - Down= View, - Pgdown= KF|19, - Ins= KF|20, - Del= 0x7F, - Scroll= KF|21, - - Nscan= 128, - - Int= 0, /* kbscans indices */ - Ext, - Nscans, }; enum |
