Changeset 66417b9 in git
- Timestamp:
- Oct 1, 2015, 3:49:03 PM (8 years ago)
- Branches:
- (u'spielwiese', '828514cf6e480e4bafc26df99217bf2a1ed1ef45')
- 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
- Files:
-
- 3 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/iplib.cc
r6b08c9e r66417b9 153 153 s=e; // set s to the starting point of the arg 154 154 // 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; 156 166 while ((*e!=',') 157 167 &&((par!=0) || (*e!=')')) -
Tst/Long/ok_l2.lst
r6b08c9e r66417b9 16 16 ncfactor_lee_l 17 17 ;;ncfactor_counterExOld_l ;; too long 18 paraplan 18 paraplan ;; 3019 sec on nepomuck 19 19 pAdd0L_l 20 20 pAdd0_l -
Tst/Short/ok_s.lst
r6b08c9e r66417b9 49 49 bug_732 50 50 bug_tr735 51 bug_tr738 51 52 bug_tr739 52 53 bug_genus_etc
Note: See TracChangeset
for help on using the changeset viewer.