On Thu, 17 Oct 2002, Boris wrote:

> I have found the file, What line would I have to change and what do I have
> to change it too?

   You'll have to figure out how things work and investigate that.
You can see where the current <ctrl><alt><bs> is handled.  It looks
like:

  if ((ModifierDown(ControlMask | AltMask)) ||
      (ModifierDown(ControlMask | AltLangMask)))
    {
      
      switch (specialkey) {
        
      case KEY_BackSpace:
        if (!xf86Info.dontZap) {
#ifdef XFreeXDGA
         DGAShutdown();
#endif
         GiveUp(0);
        }
        break;

  [...]


  It *might* be as easy as adding or changing the case statement to
include the delete key.

  There may be other ways to do this via configuring the XKB 
extension.  But I know next to nothing about XKB.


                        Mark.
> 
> ----- Original Message -----
> From: "Mark Vojkovich" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Thursday, October 17, 2002 2:37 PM
> Subject: Re: [Xpert]Changing <ctrl>-<alt>-<bckspc> to <ctrl>-<alt>-<delete>
> 
> 
> > On Thu, 17 Oct 2002, Boris wrote:
> >
> > > Does anyone know how to change exiting XFree from
> <ctrl>-<alt>-<backspace>
> > > to <ctrl>-<alt>-<delete>? Any help would be greatful. Even if I have to
> > > hardcode it.
> > >
> >
> > If you wish to hack the source see xf86PostKbdEvent() in
> common/xf86Events.c
> >
> >
> > MArk.
> > _______________________________________________
> > Xpert mailing list
> > [EMAIL PROTECTED]
> > http://XFree86.Org/mailman/listinfo/xpert
> >
> 
> _______________________________________________
> Xpert mailing list
> [EMAIL PROTECTED]
> http://XFree86.Org/mailman/listinfo/xpert
> 
_______________________________________________
Xpert mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xpert

Reply via email to