input: remove incorrect "CTRL" keyname alias for backspace
commit7f576e8b6633571ed9eb8fa9106cb06592b7470c
authorUoti Urpala <uau@glyph.nonexistent.invalid>
Sat, 5 Feb 2011 00:13:58 +0000 (5 02:13 +0200)
committerUoti Urpala <uau@glyph.nonexistent.invalid>
Sat, 5 Feb 2011 00:13:58 +0000 (5 02:13 +0200)
treec01abbf3ffe960a886c6638dfbc9b6bab7bdbf65
parent106c5f99895fefaf5386f7a4a8ddf6e3d646f1fa
input: remove incorrect "CTRL" keyname alias for backspace

The keycodes.h file contains a KEY_CTRL define, then various control
keys expressed as "KEY_CTRL + 0" and so on. Back in 2002 when the key
name table in input.c was created this KEY_CTRL define was mistakenly
interpreted as a key name, apparently confusing it with the Ctrl key
(even though the input system didn't handle that key back then). As a
result there was an incorrect key name entry with the same key code as
backspace and name "CTRL". This incorrect entry was used when printing
the name of the key. Delete it.
input/input.c