From 1b5e87036a7b7c9c4b61ef03ab956ebbb0abbc99 Mon Sep 17 00:00:00 2001 From: briggs Date: Wed, 9 Apr 1997 14:34:29 +0000 Subject: [PATCH] Fix from Bill Studenmund--generate ^-\ on ^-\ instead of on ^-/ --- sys/arch/mac68k/include/keyboard.h | 6 +++--- 1 file 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 }, -- 2.20.1