diff options
author | briggs <briggs@cvs.openbsd.org> | 1997-04-09 14:34:30 +0000 |
---|---|---|
committer | briggs <briggs@cvs.openbsd.org> | 1997-04-09 14:34:30 +0000 |
commit | 88d274ccb4133173ee3707657cfe5999205095f7 (patch) | |
tree | 9ed9f4832ef9e5e6dfec7c7c0bef2631f783d637 /sys/arch/mac68k | |
parent | 105d86b4fb24ed45e17448579decb3d85128df65 (diff) |
Fix from Bill Studenmund--generate ^-\ on ^-\ instead of on ^-/
Diffstat (limited to 'sys/arch/mac68k')
-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 }, |