Changeset 3905


Ignore:
Timestamp:
Mar 12, 2020, 9:41:30 PM (5 years ago)
Author:
Andreas Schnellbacher
Message:
  • Fixed typo in changeset r3904.
  • Backslash: Handle undefined escape strings correctly.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/bin/parseenv.cmd

    r3904 r3905  
    2020 *          but are not skipped when being used within strings (should be)
    2121 *        - no symbols can be used within the #define values yet
    22  *        - strings may include \r \n and \t.
     22 *        - strings may include \r \n and \t
     23 *        - backslashes must be doubled.
    2324 *
    2425 *    The XML Tag <tinclude name="filename"/> includes textfiles as part of
     
    395396       /* Check if StrSearch is a substring of StrExclude */
    396397       p2 = POS( StrExclude, Str, pStart);
    397        IF (p2 > 0 & p2 < p1) THEN
     398       IF (p2 > 0 & p2 <= p1) THEN
    398399       DO
    399400          /* Start after found StrExclude */
    400           pStart = p2 + LENGTH( ExcludeStr);
     401          pStart = p2 + LENGTH( StrExclude);
    401402          ITERATE;
    402403       END;
     
    420421 Str = StrReplace( '\r', '0d'x, Str, '\\');
    421422 Str = StrReplace( '\t', '09'x, Str, '\\');
    422  Str = StrReplace( '\\', '\', Str);
     423 /* Remove backslashes of undefined escape strings */
     424 Str = StrReplace( '\',  '',    Str, '\\');
     425 /* Replace exclude string at last one */
     426 Str = StrReplace( '\\', '\',   Str);
    423427
    424428 RETURN( Str);
Note: See TracChangeset for help on using the changeset viewer.