Navigation


Changeset 950:51c15f98a965 in freeDiameter for libfdcore/fdd.l


Ignore:
Timestamp:
Feb 21, 2013, 7:57:32 PM (11 years ago)
Author:
Thomas Klausner <tk@giga.or.at>
Branch:
default
Parents:
949:ad5c976e0dc7 (diff), 924:877592751fee (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Phase:
public
Message:

merge current version from 1.1 branch (927:877592751fee).

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.