Changeset 0bae3e in git for Singular/misc_ip.cc


Ignore:
Timestamp:
May 18, 2012, 7:04:49 PM (12 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
e30f0728879c325521cc6ebf8a42f092d0fd82f8
Parents:
c848e342a11be7638c627c6bb8fcdd5edcd86c96
git-author:
Hans Schoenemann <hannes@mathematik.uni-kl.de>2012-05-18 19:04:49+02:00
git-committer:
Andreas Steenpass <steenpass@mathematik.uni-kl.de>2013-09-12 13:19:30+02:00
Message:
fix: close in m2_end
(cherry picked from commit 3189a3707ba12fa2348a78276959d7cfd9155040)

Signed-off-by: Andreas Steenpass <steenpass@mathematik.uni-kl.de>

Conflicts:
	Singular/misc_ip.cc (trivial)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/misc_ip.cc

    rc848e3 r0bae3e  
    10741074  #endif
    10751075  fe_reset_input_mode();
    1076   idhdl h = IDROOT;
     1076  idhdl h = currPack->idroot;
    10771077  while(h != NULL)
    10781078  {
     
    10801080    {
    10811081      idhdl hh=h->next;
     1082      //Print("kill %s\n",IDID(h));
    10821083      killhdl(h, currPack);
    10831084      h = hh;
     
    10881089    }
    10891090  }
    1090   if(!singular_in_batchmode)
     1091  extern link_list ssiToBeClosed;
     1092  link_list hh=ssiToBeClosed;
     1093  while(hh!=NULL)
     1094  {
     1095    //Print("close %s\n",hh->l->name);
     1096    slClose(hh->l);
     1097    hh=ssiToBeClosed;
     1098  }
     1099  if (!singular_in_batchmode)
    10911100  {
    10921101    if (i<=0)
Note: See TracChangeset for help on using the changeset viewer.