Ignore:
Timestamp:
2012-06-20T14:54:36+12:00 (12 years ago)
Author:
ak19
Message:

REGENERATE-FLEX did not correctly handle substitutions yyreset() and zzRefill(). It incorrectly also changed functions that called these files, which we did not want. The revised 'sed' expression now looks for the declaring type information infront of the function names as a way to differeniate these from other locations, which call the function definitions.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • other-projects/gli-rsyntax-textarea/REGENERATE-FLEX.sh

    r25684 r25801  
    3030
    3131    cat $j \
    32       | sed 's/yyreset/YYRESETOLD/g' \
     32      | sed 's/public final void yyreset/public final void YYRESETOLD/g' \
    3333      | sed 's/YYRESETNEW/yyreset/g' \
    34       | sed 's/zzRefill/YYREFILLOLD/g' \
     34      | sed 's/private boolean zzRefill/private boolean ZZREFILLOLD/g' \
    3535      | sed 's/ZZREFILLNEW/zzRefill/g' \
    3636      > $j.new   
Note: See TracChangeset for help on using the changeset viewer.