Navigation



Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libfdcore/fdd.l

    r950 r944  
    5252        yylloc->first_column = yylloc->last_column + 1;                 \
    5353        yylloc->last_column = yylloc->first_column + yyleng - 1;        \
    54         TRACE_DEBUG_ERROR(                                              \
    55                 "(%d:%d-%d:%d) matched rule %d, length=%d, txt='%s'\n", \
     54        TRACE_DEBUG_ERROR("(%d:%d-%d:%d) matched rule %d, length=%d, txt='%s'\n",       \
    5655                yylloc->first_line, yylloc->first_column,               \
    5756                yylloc->last_line, yylloc->last_column,                 \
     
    146145<*>[[:alnum:]]+         |       /* This rule is only useful to print a complete token in error messages */
    147146        /* Unrecognized character */
    148 <*>.                    {
     147<*>.                    { 
    149148                                TRACE_DEBUG_ERROR("Unrecognized text on line %d col %d: '%s'.\n", yylloc->first_line, yylloc->first_column, yytext);
    150149                                return LEX_ERROR;
Note: See TracChangeset for help on using the changeset viewer.