summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcinap_lenrek <cinap_lenrek@felloff.net>2023-01-02 17:54:13 +0000
committercinap_lenrek <cinap_lenrek@felloff.net>2023-01-02 17:54:13 +0000
commit916c7f0bd9295c649ce8f6f8245475d083f4b7bd (patch)
tree3c4c9592f06b4a139967c1d7921f2f6d8295cb4d
parent49b5472ee7b434f3c56af4a14d4907207f8ed1ad (diff)
keyboard.h: fix misleading comment (F12 is KF|0xC)
-rw-r--r--sys/include/keyboard.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/include/keyboard.h b/sys/include/keyboard.h
index d95374797..57b7223cc 100644
--- a/sys/include/keyboard.h
+++ b/sys/include/keyboard.h
@@ -24,7 +24,7 @@ enum {
Spec= 0xF800,
PF= Spec|0x20, /* num pad function key */
Kview= Spec|0x00, /* view (shift window up) */
- /* KF|1, KF|2, ..., KF|0xC is F1, F2, ..., F12 */
+ /* KF|1, KF|2, ..., KF|0xC is F12 */
Khome= KF|0x0D,
Kup= KF|0x0E,
Kdown= Kview,