Changeset 621203a in git
- Timestamp:
- Aug 6, 2019, 10:10:17 PM (4 years ago)
- Branches:
- (u'spielwiese', 'd1ba061a762c62d3a25159d8da8b6e17332291fa')
- Children:
- ad31e892f8a885930b674dcbeb2e8852d9809946
- Parents:
- 1ba856f48f6a6807e1312654a068b165beae61b3
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/LIB/standard.lib
r1ba856 r621203a 2518 2518 { 2519 2519 list tokens; 2520 if ( find(l1, "(", 1) == 0) // no parentheses2520 if (l1[1] != "(") 2521 2521 { 2522 2522 tokens[1] = l1; … … 2590 2590 static proc parse_L2(string l2) 2591 2591 { 2592 if ( find(l2, "(", 1) == 0) // no parentheses2592 if (l2[1] != "(") 2593 2593 { 2594 2594 return(list(parse_var(l2)));
Note: See TracChangeset
for help on using the changeset viewer.