Changeset 77ff8e in git for Singular/ipshell.cc


Ignore:
Timestamp:
Oct 15, 1998, 4:08:43 PM (26 years ago)
Author:
Kai Krüger <krueger@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
db242b128be30aaa1380dfedb4f993424bf7ce50
Parents:
7ae776f0df0c8b0ecce7a1639acf874949740c78
Message:
 	* ChangeLog extra.cc grammar.y ipid.cc ipid.h iplib.cc
 	* ipshell.cc ipshell.h mod2.h.in ring.cc structs.h tesths.cc
          Replaced ring *iiLocalRing[] by a stack (class namerec)
          To use old method define USE_IILOCALRING in mod2.h
          Old method incompatible with HAVE_NAMESPACES!


git-svn-id: file:///usr/local/Singular/svn/trunk@2577 2c84dea3-7e68-4137-9b89-c4e89433aadc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/ipshell.cc

    r7ae776 r77ff8e  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: ipshell.cc,v 1.24 1998-09-29 10:36:39 krueger Exp $ */
     4/* $Id: ipshell.cc,v 1.25 1998-10-15 14:08:35 krueger Exp $ */
    55/*
    66* ABSTRACT:
     
    800800          {
    801801            Warn("redefining %s",IDID(h));
     802#ifdef USE_IILOCALRING
    802803            if (iiLocalRing[0]==IDRING(h)) iiLocalRing[0]=NULL;
     804#else
     805            if (namespaceroot->root->currRing==IDRING(h))
     806              namespaceroot->root->currRing=NULL;
     807#endif
    803808            killhdl(h,root);
    804809          }
Note: See TracChangeset for help on using the changeset viewer.