In the fixgram script, it essentially executes "ex" to create y.tab.h and
edit y.tab.c.  The script starts off by doing a find on "yyval," which
places it at the top of this bit of code:
        int yyval 0;
        int *yypv;
        int yylval 0;
        yyactr(__np__){

The script then deletes the first three lines, leaving only the
"yyactr(__np__){" line.  A little further on, the script tries to append
these lines:
        register int yyYpv;
        register int *p, *q;
        yyYpv = sp;

My question is, where are these lines supposed to go?  They're winding up
being inserted at line 2, and not after the line with "yyactr(__np__){" in
it.

Mark Post
_______________________________________________
sapdb.general mailing list
[EMAIL PROTECTED]
http://listserv.sap.com/mailman/listinfo/sapdb.general

Reply via email to