commit-gnue
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

gnue/geas lib/classdefs/gcdparser.h lib/classde...


From: Neil Tiffin
Subject: gnue/geas lib/classdefs/gcdparser.h lib/classde...
Date: Fri, 24 Aug 2001 14:30:58 -0700

CVSROOT:        /home/cvs
Module name:    gnue
Changes by:     Neil Tiffin <address@hidden>    01/08/24 14:30:58

Modified files:
        geas/lib/classdefs: gcdparser.h lparser.l 
        geas/tools     : gcdverifier.c 
        geas/tools/mac/gcdVerifier.pbproj: ntiffin.pbxuser 

Log message:
        Clean up some more code related to help processing and remove an unused 
declaration in gcdverifier.

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/gnue/geas/lib/classdefs/gcdparser.h.diff?cvsroot=OldCVS&tr1=1.29&tr2=1.30&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/gnue/geas/lib/classdefs/lparser.l.diff?cvsroot=OldCVS&tr1=1.27&tr2=1.28&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/gnue/geas/tools/gcdverifier.c.diff?cvsroot=OldCVS&tr1=1.24&tr2=1.25&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/gnue/geas/tools/mac/gcdVerifier.pbproj/ntiffin.pbxuser.diff?cvsroot=OldCVS&tr1=1.10&tr2=1.11&r1=text&r2=text

Patches:
Index: gnue/geas/lib/classdefs/gcdparser.h
diff -u gnue/geas/lib/classdefs/gcdparser.h:1.29 
gnue/geas/lib/classdefs/gcdparser.h:1.30
--- gnue/geas/lib/classdefs/gcdparser.h:1.29    Fri Aug 24 12:36:50 2001
+++ gnue/geas/lib/classdefs/gcdparser.h Fri Aug 24 14:30:58 2001
@@ -21,7 +21,7 @@
    along with this program; if not, write to the Free Software Foundation,
    Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  
 
-   $Id: gcdparser.h,v 1.29 2001/08/24 19:36:50 ntiffin Exp $
+   $Id: gcdparser.h,v 1.30 2001/08/24 21:30:58 ntiffin Exp $
    
 */
 
@@ -127,7 +127,6 @@
 struct _odl_tree
 {
   struct _odl_container *root;
-  GList * help_list;
 };
 
 /** \struct _odl_datatype
@@ -188,8 +187,6 @@
 void                  free_odl_item (struct _odl_item *item);
 struct _odl_argument *alloc_odl_argument (void);
 void                  free_odl_argument (struct _odl_argument *argument);
-struct _odl_help     *alloc_odl_help (void);
-void                  free_odl_help (struct _odl_item *help);
 void                  free_odl_unknown_item (struct _odl_base *base);
 void                  init_odl_base (struct _odl_base *base);
 void                  free_odl_base (struct _odl_base *base);
Index: gnue/geas/lib/classdefs/lparser.l
diff -u gnue/geas/lib/classdefs/lparser.l:1.27 
gnue/geas/lib/classdefs/lparser.l:1.28
--- gnue/geas/lib/classdefs/lparser.l:1.27      Thu Jun 28 21:08:25 2001
+++ gnue/geas/lib/classdefs/lparser.l   Fri Aug 24 14:30:58 2001
@@ -24,7 +24,7 @@
    along with this program; if not, write to the Free Software Foundation,
    Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
    
-   $Id: lparser.l,v 1.27 2001/06/29 04:08:25 treshna Exp $
+   $Id: lparser.l,v 1.28 2001/08/24 21:30:58 ntiffin Exp $
 
 */
 #include "config.h"
@@ -301,8 +301,6 @@
 calculated          { ST; if( expecting_datatype == 1 ) { expecting_datatype = 
0; return(CALCULATED); } else { yylval.string=g_strdup(yytext); return(SYMBOL); 
} }
 trigger             { ST; if( expecting_datatype == 1 ) { expecting_datatype = 
0; return(TRIGGER);    } else { yylval.string=g_strdup(yytext); return(SYMBOL); 
} }
 enum                { ST; if( expecting_datatype == 1 ) { expecting_datatype = 
0; return(ENUM);       } else { yylval.string=g_strdup(yytext); return(SYMBOL); 
} }
-help                { ST; if( expecting_datatype == 1 ) { expecting_datatype = 
0; return(HELP);       } else { yylval.string=g_strdup(yytext); return(SYMBOL); 
} }
-tooltip             { ST; if( expecting_datatype == 1 ) { expecting_datatype = 
0; return(TOOLTIP);    } else { yylval.string=g_strdup(yytext); return(SYMBOL); 
} }
 order               { ST; if( expecting_datatype == 1 ) { expecting_datatype = 
0; return(ORDER);      } else { yylval.string=g_strdup(yytext); return(SYMBOL); 
} }
 by                  { ST; if( expecting_datatype == 1 ) { expecting_datatype = 
0; return(BY);         } else { yylval.string=g_strdup(yytext); return(SYMBOL); 
} }
 desc                { ST; if( expecting_datatype == 1 ) { expecting_datatype = 
0; return(DESC);       } else { yylval.string=g_strdup(yytext); return(SYMBOL); 
} }
Index: gnue/geas/tools/gcdverifier.c
diff -u gnue/geas/tools/gcdverifier.c:1.24 gnue/geas/tools/gcdverifier.c:1.25
--- gnue/geas/tools/gcdverifier.c:1.24  Thu Aug 23 08:31:44 2001
+++ gnue/geas/tools/gcdverifier.c       Fri Aug 24 14:30:58 2001
@@ -20,7 +20,7 @@
    along with this program; if not, write to the Free Software Foundation,
    Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  
  
-   $Id: gcdverifier.c,v 1.24 2001/08/23 15:31:44 ntiffin Exp $
+   $Id: gcdverifier.c,v 1.25 2001/08/24 21:30:58 ntiffin Exp $
 */
 
 #include <glib.h>
@@ -74,8 +74,7 @@
           else if (strcmp (argv[i], "--version") == 0)
             {
               GString *revision;
-              GString *build_date;
-              revision = g_string_new ("$Revision: 1.24 $");
+              revision = g_string_new ("$Revision: 1.25 $");
               
               if (revision->len > 14)
                 {
Index: gnue/geas/tools/mac/gcdVerifier.pbproj/ntiffin.pbxuser
diff -u gnue/geas/tools/mac/gcdVerifier.pbproj/ntiffin.pbxuser:1.10 
gnue/geas/tools/mac/gcdVerifier.pbproj/ntiffin.pbxuser:1.11
--- gnue/geas/tools/mac/gcdVerifier.pbproj/ntiffin.pbxuser:1.10 Fri Aug 24 
14:16:50 2001
+++ gnue/geas/tools/mac/gcdVerifier.pbproj/ntiffin.pbxuser      Fri Aug 24 
14:30:58 2001
@@ -60,12 +60,12 @@
        };
        017FF93F00A75D437F000001 = {
                uiCtxt = {
-                       sepNavWindowFrame = "{{15, 208}, {1003, 533}}";
+                       sepNavWindowFrame = "{{13, 58}, {1011, 688}}";
                };
        };
        017FF94000A75D437F000001 = {
                uiCtxt = {
-                       sepNavWindowFrame = "{{149, 88}, {824, 624}}";
+                       sepNavWindowFrame = "{{15, 239}, {750, 502}}";
                };
        };
        08FB7793FE84155DC02AAC07 = {
@@ -83,10 +83,10 @@
                                        ActiveTab = 0;
                                        Frame = "{{0, 23}, {949, 636}}";
                                        Split0 = {
-                                               ActiveTab = 2;
+                                               ActiveTab = 3;
                                                Frame = "{{262, 0}, {687, 
636}}";
                                                Split0 = {
-                                                       Frame = "{{0, 497}, 
{687, 139}}";
+                                                       Frame = "{{0, 532}, 
{687, 104}}";
                                                };
                                                SplitCount = 1;
                                                Tab0 = {
@@ -128,7 +128,7 @@
                                                        Frame = "{{0, 0}, {687, 
472}}";
                                                };
                                                Tab3 = {
-                                                       Frame = "{{0, 0}, {712, 
507}}";
+                                                       Frame = "{{0, 0}, {687, 
507}}";
                                                };
                                                TabCount = 4;
                                        };



reply via email to

[Prev in Thread] Current Thread [Next in Thread]