Enlightenment CVS committal

Author  : dj2
Project : e17
Module  : proto

Dir     : e17/proto/edje_cc


Modified Files:
        Makefile edje.y 


Log Message:
- turn debugging on
- bug fixes

===================================================================
RCS file: /cvsroot/enlightenment/e17/proto/edje_cc/Makefile,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- Makefile    7 Sep 2004 23:29:00 -0000       1.1
+++ Makefile    8 Sep 2004 05:55:06 -0000       1.2
@@ -1,4 +1,4 @@
-CC=gcc
+CC=gcc -g -O0
 LEX_FILE=edje.l
 PARSE_FILE=edje.y
 
===================================================================
RCS file: /cvsroot/enlightenment/e17/proto/edje_cc/edje.y,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -3 -r1.15 -r1.16
--- edje.y      8 Sep 2004 05:44:03 -0000       1.15
+++ edje.y      8 Sep 2004 05:55:06 -0000       1.16
@@ -133,6 +133,7 @@
        | program_transition
        | program_target
        | program_after
+       | script
        ;
 
 name: NAME COLON STRING SEMICOLON {
@@ -158,6 +159,9 @@
 program_action: ACTION COLON action_type STRING FLOAT SEMICOLON {
                printf("action %d %s %f\n", $3, $4, $5);
        }
+       | ACTION COLON action_type SEMICOLON {
+               printf("action %d\n", $3);
+       }
        ;
 
 action_type: SIGNAL_EMIT { $$ = ETCHER_ACTION_SIGNAL_EMIT; }
@@ -259,7 +263,7 @@
        | text_class
     ; 
 
-type: TYPE COLON part_type {
+type: TYPE COLON part_type SEMICOLON {
                printf("type %d\n", $3);
        }
        ;
@@ -569,7 +573,7 @@
        ;
 
 size_entry: SIZE COLON FLOAT SEMICOLON {
-               printf("size %s\n", $3);
+               printf("size %f\n", $3);
        }
        ;
 




-------------------------------------------------------
This SF.Net email is sponsored by BEA Weblogic Workshop
FREE Java Enterprise J2EE developer tools!
Get your free copy of BEA WebLogic Workshop 8.1 today.
http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click
_______________________________________________
enlightenment-cvs mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to