Changeset 800


Ignore:
Timestamp:
Oct 4, 2003, 6:00:27 PM (22 years ago)
Author:
bird
Message:

Fixed problem with quoted parameters starting with a space.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/misc/dllar.cmd

    • Property cvs2svn:cvs-rev changed from 1.7 to 1.8
    r799 r800  
    244244            do
    245245                iPos = pos(';', line);
    246                 if (iPos > 1) then 
     246                if (iPos > 1) then
    247247                    line = strip(substr(line, 1, iPos - 1), 'T');
    248248                line = line||' @'||ordinal||' NONAME';
     
    356356    if (left(_tmp_, 1) = '"') | (left(_tmp_, 1) = "'") then
    357357    do
    358         do while (i < words(cmdLine) & right(_tmp_, 1) \= left(_tmp_, 1))
     358        do while (i < words(cmdLine) & (length(_tmp_) <= 1 | right(_tmp_, 1) \= left(_tmp_, 1)))
    359359            i = i + 1;
    360360            if (_tmp_ = '') then
Note: See TracChangeset for help on using the changeset viewer.