scsh-checkins
[Top] [All Lists]

[Scsh-checkins] CVS: scx/c/xlib event.c,1.3,1.4

To: scsh-checkins@lists.sourceforge.net
Subject: [Scsh-checkins] CVS: scx/c/xlib event.c,1.3,1.4
From: David Frese <frese@users.sourceforge.net>
Date: Mon, 16 Jul 2001 04:55:05 -0700
List-id: <scsh-checkins.lists.sourceforge.net>
Sender: scsh-checkins-admin@lists.sourceforge.net
Update of /cvsroot/scsh/scx/c/xlib
In directory usw-pr-cvs1:/tmp/cvs-serv4414

Modified Files:
        event.c 
Log Message:
Fixed Event_Mask_Syms/Event_Syms confusion.


Index: event.c
===================================================================
RCS file: /cvsroot/scsh/scx/c/xlib/event.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** event.c     2001/07/09 13:39:59     1.3
--- event.c     2001/07/16 11:55:03     1.4
***************
*** 2,6 ****
  #include "scheme48.h"
  
! SYMDESCR Event_Names[] = {
    { "key-press",       KeyPress },
    { "key-release",     KeyRelease },
--- 2,6 ----
  #include "scheme48.h"
  
! SYMDESCR Event_Syms[] = {
    { "key-press",       KeyPress },
    { "key-release",     KeyRelease },
***************
*** 340,344 ****
    
    // And the Event-Name
!   r = s48_cons( Bit_To_Symbol(e->type, Event_Names), r );
  
    S48_GC_UNPROTECT();
--- 340,344 ----
    
    // And the Event-Name
!   r = s48_cons( Bit_To_Symbol(e->type, Event_Syms), r );
  
    S48_GC_UNPROTECT();



<Prev in Thread] Current Thread [Next in Thread>
  • [Scsh-checkins] CVS: scx/c/xlib event.c,1.3,1.4, David Frese <=