Changeset 6d6c8d in git


Ignore:
Timestamp:
Mar 9, 2017, 12:04:52 PM (7 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
Children:
f45a05ec4cc32da1d754f711686a453de7a692be
Parents:
e6c82d85aac825e8a4b87b736cc416a479f19435
Message:
fix: checkall (debug version)
Location:
Singular
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • Singular/ipid.cc

    re6c82d r6d6c8d  
    6161idhdl currPackHdl = NULL;
    6262idhdl basePackHdl = NULL;
    63 package currPack =NULL;
    64 package basePack =NULL;
     63package currPack = NULL;
     64package basePack = NULL;
    6565idhdl currRingHdl = NULL;
    6666
  • Singular/misc_ip.cc

    re6c82d r6d6c8d  
    783783               SINGULAR_VERSION, sizeof(void*)*8,
    784784#ifdef MAKE_DISTRIBUTION
    785                VERSION_DATE, GIT_VERSION);
     785               VERSION_DATE, GIT_VERSION);
    786786#else
    787                singular_date, GIT_VERSION);
     787               singular_date, GIT_VERSION);
    788788#endif
    789789  StringAppendS("\nwith\n\t");
     
    10301030        if (IDTYP(hh)==PACKAGE_CMD)
    10311031        {
    1032           idhdl h2=IDPACKAGE(hh)->idroot;
     1032          idhdl h2=NULL;
     1033          if (IDPACKAGE(hh)!=NULL)
     1034            h2=IDPACKAGE(hh)->idroot;
    10331035          if (IDPACKAGE(hh)!=basePack)
    10341036          {
     
    12521254  currPack=basePack;
    12531255  idhdl h;
    1254   h=enterid("Top", 0, PACKAGE_CMD, &IDROOT, FALSE);
     1256  h=enterid("Top", 0, PACKAGE_CMD, &IDROOT, TRUE);
    12551257  IDPACKAGE(h)=basePack;
    12561258  IDPACKAGE(h)->language = LANG_TOP;
Note: See TracChangeset for help on using the changeset viewer.