Changeset 876e48 in git for Singular/misc_ip.cc


Ignore:
Timestamp:
Jul 10, 2012, 10:55:15 AM (11 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
Children:
f0294d51da5ddb2a08579dc4652939cfa250a9f2
Parents:
e30f0728879c325521cc6ebf8a42f092d0fd82f8
git-author:
Hans Schoenemann <hannes@mathematik.uni-kl.de>2012-07-10 10:55:15+02:00
git-committer:
Andreas Steenpass <steenpass@mathematik.uni-kl.de>2013-09-12 13:19:30+02:00
Message:
fix: m2_end
(cherry picked from commit b42514daaae54b8e43c3334010886a29dc3c90d1)

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

Legend:

Unmodified
Added
Removed
  • Singular/misc_ip.cc

    re30f07 r876e48  
    10741074  #endif
    10751075  fe_reset_input_mode();
    1076   idhdl h = currPack->idroot;
    1077   while(h != NULL)
    1078   {
    1079     if(IDTYP(h) == LINK_CMD)
    1080     {
    1081       idhdl hh=h->next;
    1082       //Print("kill %s\n",IDID(h));
    1083       killhdl(h, currPack);
    1084       h = hh;
    1085     }
    1086     else
    1087     {
    1088       h = h->next;
    1089     }
    1090   }
    10911076  if (ssiToBeClosed_inactive)
    10921077  {
    10931078    ssiToBeClosed_inactive=FALSE;
    10941079
     1080    idhdl h = currPack->idroot;
     1081    while(h != NULL)
     1082    {
     1083      if(IDTYP(h) == LINK_CMD)
     1084      {
     1085        idhdl hh=h->next;
     1086        //Print("kill %s\n",IDID(h));
     1087        killhdl(h, currPack);
     1088        h = hh;
     1089      }
     1090      else
     1091      {
     1092        h = h->next;
     1093      }
     1094    }
    10951095    link_list hh=ssiToBeClosed;
    10961096    while(hh!=NULL)
Note: See TracChangeset for help on using the changeset viewer.