Navigation



Ignore:
Timestamp:
Mar 15, 2013, 2:14:35 AM (11 years ago)
Author:
Thomas Klausner <tk@giga.or.at>
Branch:
default
Phase:
public
Message:

Remove newlines from fd_log_debug, TRACE_DEBUG, TRACE_ERROR, and TRACE_DEBUG_ERROR
(as far as sed could find them)
with manual fixing afterwards.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/dict_legacy_xml/dict_lxml.l

    r741 r974  
    8080                                CHECK_MALLOC_DO( yylval->string = strdup(yytext+1),
    8181                                {
    82                                         TRACE_DEBUG(INFO, "Unable to copy the string '%s': %s\n", yytext, strerror(errno));
     82                                        TRACE_DEBUG(INFO, "Unable to copy the string '%s': %s", yytext, strerror(errno));
    8383                                        return LEX_ERROR; /* trig an error in yacc parser */
    8484                                } );
     
    9292        /* Unrecognized sequence, if it did not match any previous pattern */
    9393[^[:space:]\";\n]+      {
    94                                 fd_log_debug("Unrecognized text on line %d col %d: '%s'.\n", yylloc->first_line, yylloc->first_column, yytext);
     94                                fd_log_debug("Unrecognized text on line %d col %d: '%s'.", yylloc->first_line, yylloc->first_column, yytext);
    9595                                return LEX_ERROR;
    9696                        }
Note: See TracChangeset for help on using the changeset viewer.