On Thursday 12 December 2002 8:10 pm, Garst R. Reese wrote:
> Angus Leeming wrote:
> > I'm going to cc the lyx-devel list with this. If I can find anyone
> > willing to test this stuff out, I'll be very happy indeed.
>
> Hi Angus,
> I'd be happy to test x86, linux. If you have specific tests you want
> done, shout.
> I'll apply bigpatch and see what happens with compose.
>
> Garst

Garst, you'll need this patch too or you won't be able to close the dialogs 
with the Escape key.

Apply from ${XFORMSSRC}/lib as
$ patch -p2 < shortcut.diff

Angus
--- xforms-1.0-release/lib/objects.c	Mon Jun  3 18:58:23 2002
+++ xforms-1.0-release-modified/lib/./objects.c	Fri Dec 13 14:36:27 2002
@@ -1004,7 +1004,7 @@
 	    else if (str[i] >= 'a' && str[i] <= 'z')
 		sc[j++] = str[i] - 'a' + 1 + offset;
 	    else if (str[i] == '[')
-		sc[j++] = 27 + offset;
+		sc[j++] = XK_Escape + offset;
 	    else
 		sc[j++] = str[i] + offset;
 	    offset = 0;

Reply via email to