Changeset 66417b9 in git


Ignore:
Timestamp:
Oct 1, 2015, 3:49:03 PM (9 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
bfc0a2c96a339a71d9850d33f5afc5b725262f6b
Parents:
6b08c9e7f0afcbe6909179b9cb7968a5ad47451e
git-author:
Hans Schoenemann <hannes@mathematik.uni-kl.de>2015-10-01 15:49:03+02:00
git-committer:
Hans Schoenemann <hannes@mathematik.uni-kl.de>2015-10-01 15:50:15+02:00
Message:
fix tr. #738 (\n in argument list)
Files:
3 added
3 edited

Legend:

Unmodified
Added
Removed
  • Singular/iplib.cc

    r6b08c9e r66417b9  
    153153    s=e; // set s to the starting point of the arg
    154154         // and search for the end
    155     while(*s==' ') s++; e=s; // skip leading paces
     155    // skip leading spaces:
     156    loop
     157    {
     158      if ((*s==' ')||(*s=='\t'))
     159        s++;
     160      else if ((*s=='\n')&&(*(s+1)==' '))
     161        s+=2;
     162      else // start of new arg or \0 or )
     163        break;
     164    }
     165    e=s;
    156166    while ((*e!=',')
    157167    &&((par!=0) || (*e!=')'))
  • Tst/Long/ok_l2.lst

    r6b08c9e r66417b9  
    1616ncfactor_lee_l
    1717;;ncfactor_counterExOld_l ;; too long
    18 paraplan
     18paraplan ;; 3019 sec on nepomuck
    1919pAdd0L_l
    2020pAdd0_l
  • Tst/Short/ok_s.lst

    r6b08c9e r66417b9  
    4949bug_732
    5050bug_tr735
     51bug_tr738
    5152bug_tr739
    5253bug_genus_etc
Note: See TracChangeset for help on using the changeset viewer.