Subject: Re: Using the delete key to "right-delete" chars
To: None <port-i386@netbsd.org>
From: Christian Hattemer <chris@riednet.tu-darmstadt.de>
List: port-i386
Date: 10/01/2003 11:30:54
Warning: This is a message in MIME format. Your mail reader does not
support MIME. Some parts of this message will be readable as plain text.
To see the rest, you will need to upgrade your mail reader. Following are
some URLs where you can find MIME-capable mail programs for common platforms:

  Amiga............: YAM          http://www.yam.ch/
  Unix.............: Metamail     ftp://ftp.bellcore.com/nsb/
  Windows/Macintosh: Eudora       http://www.qualcomm.com/

General info about MIME can be found at:

http://www.cis.ohio-state.edu/hypertext/faq/usenet/mail/mime-faq/top.html


--BOUNDARY.142140192.3
Content-Type: text/plain

On 01-Okt-03 Christian Biere wrote:

> As I didn't found an appropriate function for wscons, I've developed
> this little remap hack:

> # wsconsctl -w map+="keycode 211 = F11"

With wscons the problem is that both backspace and delete keys map to
delete. So you just need to fix that either with wsconsctl or by fixing the
kernel directly with the attached patch.

Bye, Chris

-- 
          __
         /// Amiga 4000T 040/40                    /~\ The ASCII
    __  ///                                        \ / Ribbon Campaign
    \\\///   Team AMIGA                             X  against HTML
     \XX/                                          / \ E-Mail

--BOUNDARY.142140192.3
Content-Type: text/plain; name="wskbdmap_mfii.c-diff"
Content-Disposition: attachment; filename="wskbdmap_mfii.c-diff"

*** /sys/dev/pckbd/wskbdmap_mfii.c-orig	       Thu Aug 29 20:53:42 2002
--- /sys/dev/pckbd/wskbdmap_mfii.c     Thu Aug 29 21:01:13 2002
***************
*** 58,64 ****
      KC(11), 			KS_0,		KS_parenright,
      KC(12), 			KS_minus,	KS_underscore,
      KC(13), 			KS_equal,	KS_plus,
!     KC(14),  KS_Cmd_ResetEmul,	KS_Delete,
      KC(15), 			KS_Tab,
      KC(16), 			KS_q,
      KC(17), 			KS_w,
--- 58,64 ----
      KC(11), 			KS_0,		KS_parenright,
      KC(12), 			KS_minus,	KS_underscore,
      KC(13), 			KS_equal,	KS_plus,
!     KC(14),  KS_Cmd_ResetEmul,	KS_BackSpace,
      KC(15), 			KS_Tab,
      KC(16), 			KS_q,
      KC(17), 			KS_w,

--BOUNDARY.142140192.3--