Changeset 621203a in git


Ignore:
Timestamp:
Aug 6, 2019, 10:10:17 PM (5 years ago)
Author:
Andreas Steenpass <steenpass@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
ad31e892f8a885930b674dcbeb2e8852d9809946
Parents:
1ba856f48f6a6807e1312654a068b165beae61b3
Message:
fix parsing of "(" in create_ring()
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/LIB/standard.lib

    r1ba856 r621203a  
    25182518{
    25192519  list tokens;
    2520   if (find(l1, "(", 1) == 0)   // no parentheses
     2520  if (l1[1] != "(")
    25212521  {
    25222522    tokens[1] = l1;
     
    25902590static proc parse_L2(string l2)
    25912591{
    2592   if (find(l2, "(", 1) == 0)   // no parentheses
     2592  if (l2[1] != "(")
    25932593  {
    25942594    return(list(parse_var(l2)));
Note: See TracChangeset for help on using the changeset viewer.