summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-03-29 12:33:00 -0400
committerPietro Gagliardi <[email protected]>2014-03-29 12:33:00 -0400
commit76d24be6b0c760bf44fa367d6248f0f6efc3d2d6 (patch)
tree014c160c72300819c49f32ef96cf5402cb5e9642
parent0d75303dc33696ca088415ff6981f0f246d848bf (diff)
Removed the numpad constants pending re-evaluation of how to handle those.
-rw-r--r--area.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/area.go b/area.go
index 05d3361..3a6b604 100644
--- a/area.go
+++ b/area.go
@@ -194,7 +194,7 @@ const (
F10
F11
F12
- N0 // numpad keys; independent of Num Lock state
+/* N0 // numpad keys; independent of Num Lock state
N1 // N0..N9 are guaranteed to be consecutive
N2
N3
@@ -210,7 +210,7 @@ const (
NSubtract
NMultiply
NDivide
- _nextkeys // for sanity check
+*/ _nextkeys // for sanity check
)
// EffectiveKey returns e.Key if it is set.
@@ -222,7 +222,7 @@ func (e KeyEvent) EffectiveKey() byte {
if e.Key != 0 {
return e.Key
}
- k := e.ExtKey
+/* k := e.ExtKey
switch {
case k >= N0 && k <= N9:
return byte(k - N0) + '0'
@@ -239,7 +239,7 @@ func (e KeyEvent) EffectiveKey() byte {
case k == NDivide:
return '/'
}
- return 0
+*/ return 0
}
// Modifiers indicates modifier keys being held during an event.