Changeset 1c16bf in git


Ignore:
Timestamp:
May 13, 2019, 6:08:32 PM (4 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
Children:
4e5fdad42de8a0a52366ead81619a2e027f2a8ef
Parents:
bc54e09b748dd50fc9c450cd004b4960b9a7ef92
Message:
grammar: test currRing, not currRingHdl
Location:
Singular
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • Singular/grammar.cc

    rbc54e0 r1c16bf  
    25902590#line 489 "grammar.y"
    25912591    {
    2592             if (currRingHdl==NULL) MYYERROR("no ring active");
     2592            if (currRing==NULL) MYYERROR("no ring active");
    25932593            int j = 0;
    25942594            memset(&(yyval.lv),0,sizeof(sleftv));
  • Singular/grammar.y

    rbc54e0 r1c16bf  
    488488        | '[' exprlist ']'
    489489          {
    490             if (currRingHdl==NULL) MYYERROR("no ring active");
     490            if (currRing==NULL) MYYERROR("no ring active");
    491491            int j = 0;
    492492            memset(&$$,0,sizeof(sleftv));
Note: See TracChangeset for help on using the changeset viewer.