SOURCES: qdox-yy_lexical_state.patch (NEW) - do not use old intern...

glen glen at pld-linux.org
Sun Dec 2 17:49:40 CET 2007


Author: glen                         Date: Sun Dec  2 16:49:40 2007 GMT
Module: SOURCES                       Tag: HEAD
---- Log message:
- do not use old internal symbol:
    [javac] Compiling 2 source files to qdox-1.5/target/classes
    [javac] qdox-1.5/target/src/java/com/thoughtworks/qdox/parser/impl/JFlexLexer.java:390: cannot find symbol
    [javac] symbol  : variable yy_lexical_state
    [javac] location: class com.thoughtworks.qdox.parser.impl.JFlexLexer
    [javac]         stateStack[stateDepth++] = yy_lexical_state;
    [javac]               

---- Files affected:
SOURCES:
   qdox-yy_lexical_state.patch (NONE -> 1.1)  (NEW)

---- Diffs:

================================================================
Index: SOURCES/qdox-yy_lexical_state.patch
diff -u /dev/null SOURCES/qdox-yy_lexical_state.patch:1.1
--- /dev/null	Sun Dec  2 17:49:40 2007
+++ SOURCES/qdox-yy_lexical_state.patch	Sun Dec  2 17:49:35 2007
@@ -0,0 +1,11 @@
+--- qdox-1.5/src/grammar/lexer.flex~	2007-12-02 18:31:38.586908105 +0200
++++ qdox-1.5/src/grammar/lexer.flex	2007-12-02 18:43:29.864626733 +0200
+@@ -38,7 +38,7 @@
+     }
+ 
+     private void pushState(int newState) {
+-        stateStack[stateDepth++] = yy_lexical_state;
++        stateStack[stateDepth++] = yystate();
+         yybegin(newState);
+     }
+ 
================================================================


More information about the pld-cvs-commit mailing list