From xemacs-m  Mon Dec 30 19:34:12 1996
Received: from altair.xemacs.org (steve@xemacs.miranova.com [206.190.83.19])
          by xemacs.cs.uiuc.edu (8.8.4/8.8.4) with ESMTP
	  id TAA18653 for <xemacs-beta@xemacs.org>; Mon, 30 Dec 1996 19:34:12 -0600 (CST)
Received: (from steve@localhost)
          by altair.xemacs.org (8.8.4/8.8.4)
	  id RAA10065; Mon, 30 Dec 1996 17:44:38 -0800
Sender: steve@xemacs.org
To: xemacs-beta@xemacs.org
Subject: Re: invalid keysym in 19.15b6
References: <199612301613.LAA10194@spacely.icd.teradyne.com>
X-Url: http://www.miranova.com/%7Esteve/
Mail-Copies-To: never
X-Face: #!T9!#9s-3o8)*uHlX{Ug[xW7E7Wr!*L46-OxqMu\xz23v|R9q}lH?cRS{rCNe^'[`^sr5"
 f8*@r4ipO6Jl!:Ccq<xoV[Qz2u8<8-+Vwf2gzJ44lf_/y9OaQ`@#Q65{U4/TC)i2`~/M&QI$X>p:9I
 OSS'2{-)-4wBnVeg0S\O4Al@)uC[pD|+
X-Attribution: sb
From: Steven L Baur <steve@miranova.com>
In-Reply-To: Vinnie Shelton's message of Mon, 30 Dec 1996 11:13:03 -0500
Mime-Version: 1.0 (generated by tm-edit 7.100)
Content-Type: text/plain; charset=US-ASCII
Date: 30 Dec 1996 17:44:35 -0800
Message-ID: <m2916fij24.fsf@altair.xemacs.org>
Lines: 46
X-Mailer: Red Gnus v0.72/XEmacs 19.15

>>>>> "Vinnie" == Vinnie Shelton <shelton@icd.teradyne.com> writes:

Vinnie> In 19.15b6 under Solaris 2.4, while running rgnus 0.74, at the
Vinnie> end of a group, I hit 2 spaces to open the next group, and
Vinnie> twice now I have gotten the following message:

Vinnie> invalid keysym (see doc of define-key): M-left

Vinnie> I can easily work around this by exiting the group and
Vinnie> entering it by hand.  I tried to get a trace, but I couldn't
Vinnie> reproduce the failure.

Thanks for the report Vinnie.  (Two source trees sucks).

Index: hexl.el
===================================================================
RCS file: /usr/local/xemacs/xemacs-19.15/lisp/packages/hexl.el,v
retrieving revision 1.1.1.2
diff -u -r1.1.1.2 hexl.el
--- hexl.el	1996/12/18 03:44:53	1.1.1.2
+++ hexl.el	1996/12/31 01:41:49
@@ -689,15 +689,15 @@
   (define-key hexl-mode-map [right] 'hexl-forward-char)
   (define-key hexl-mode-map [up] 'hexl-previous-line)
   (define-key hexl-mode-map [down] 'hexl-next-line)
-  (define-key hexl-mode-map [M-left] 'hexl-backward-short)
-  (define-key hexl-mode-map [M-right] 'hexl-forward-short)
+  (define-key hexl-mode-map [(meta left)] 'hexl-backward-short)
+  (define-key hexl-mode-map [(meta right)] 'hexl-forward-short)
   (define-key hexl-mode-map [next] 'hexl-scroll-up)
   (define-key hexl-mode-map [prior] 'hexl-scroll-down)
   (define-key hexl-mode-map [home] 'hexl-beginning-of-buffer)
   (define-key hexl-mode-map [deletechar] 'undefined)
   (define-key hexl-mode-map [deleteline] 'undefined)
   (define-key hexl-mode-map [insertline] 'undefined)
-  (define-key hexl-mode-map [S-delete] 'undefined)
+  (define-key hexl-mode-map [(shift delete)] 'undefined)
   (define-key hexl-mode-map "\177" 'undefined)
 
   (define-key hexl-mode-map "\C-a" 'hexl-beginning-of-line)

-- 
steve@miranova.com baur
Unsolicited commercial e-mail will be billed at $250/message.
"That Bill Clinton.  He probably doesn't know how to log on to the
Internet."  -- Rush Limbaugh, noted Computer Expert

