diff options
author | 1997-04-09 14:34:29 +0000 | |
---|---|---|
committer | 1997-04-09 14:34:29 +0000 | |
commit | 1b5e87036a7b7c9c4b61ef03ab956ebbb0abbc99 (patch) | |
tree | 34b0d3c067d0a54e8ffde2fa704851991990ed3f | |
parent | Comment video cards and add define for SuperMac Thunder/24. (diff) | |
download | wireguard-openbsd-1b5e87036a7b7c9c4b61ef03ab956ebbb0abbc99.tar.xz wireguard-openbsd-1b5e87036a7b7c9c4b61ef03ab956ebbb0abbc99.zip |
Fix from Bill Studenmund--generate ^-\ on ^-\ instead of on ^-/
-rw-r--r-- | sys/arch/mac68k/include/keyboard.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/mac68k/include/keyboard.h b/sys/arch/mac68k/include/keyboard.h index 597efc66c93..e6a3940bc4c 100644 --- a/sys/arch/mac68k/include/keyboard.h +++ b/sys/arch/mac68k/include/keyboard.h @@ -1,4 +1,4 @@ -/* $OpenBSD: keyboard.h,v 1.3 1996/05/26 18:35:54 briggs Exp $ */ +/* $OpenBSD: keyboard.h,v 1.4 1997/04/09 14:34:29 briggs Exp $ */ /* $NetBSD: keyboard.h,v 1.5 1996/02/23 05:43:48 scottr Exp $ */ /*- @@ -119,9 +119,9 @@ unsigned char keyboard[128][3] = { { /* 0x27, */ '\'', '"', 0x00 }, { /* 0x28, */ 'k', 'K', 0x0B }, { /* 0x29, */ ';', ':', 0x00 }, - { /* 0x2A, */ '\\', '|', 0x00 }, + { /* 0x2A, */ '\\', '|', 0x1C }, { /* 0x2B, */ ',', '<', 0x00 }, - { /* 0x2C, */ '/', '?', 0x1C }, + { /* 0x2C, */ '/', '?', 0x00 }, { /* 0x2D, */ 'n', 'N', 0x0E }, { /* 0x2E, */ 'm', 'M', 0x0D }, { /* 0x2F, */ '.', '>', 0x00 }, |