Changeset bd50e9 in git


Ignore:
Timestamp:
Nov 8, 2018, 4:25:09 PM (5 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
03ff5f33fb7a5e051b5bbb6dbc0866eddba7c169
Parents:
742c223a36e9d7c94ba8dbe4fb6de912634d61c2
Message:
better error messages for list-assign
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/ipassign.cc

    r742c22 rbd50e9  
    21052105            nok=iiConvert(ht,etyp,j,hh,&t);
    21062106            hh->next=t.next;
    2107             if (nok) break;
     2107            if (nok)
     2108            { Werror("can not convert %s(%s) -> %s",Tok2Cmdname(ht),hh->Name(),Tok2Cmdname(etyp));
     2109               break;
     2110            }
    21082111            lm->m[i]=(poly)t.CopyD(etyp);
    21092112            pNormalize(lm->m[i]);
     
    21162119            nok=iiConvert(ht,mtyp,j,hh,&t);
    21172120            hh->next=t.next;
    2118             if (nok) break;
     2121            if (nok)
     2122            { Werror("can not convert %s(%s) -> %s",Tok2Cmdname(ht),hh->Name(),Tok2Cmdname(mtyp));
     2123               break;
     2124            }
    21192125            rm = (matrix)t.CopyD(mtyp);
    21202126            if (module_assign)
     
    21362142          {
    21372143            nok=TRUE;
     2144            if (nok)
     2145            { Werror("can not convert %s(%s) -> %s",Tok2Cmdname(ht),hh->Name(),Tok2Cmdname(mtyp));
     2146            }
    21382147            break;
    21392148          }
Note: See TracChangeset for help on using the changeset viewer.