Navigation



Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libfdcore/fdd.l

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