Changeset b1cadb0 in git


Ignore:
Timestamp:
Jan 12, 2015, 10:32:31 AM (9 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
Children:
8ba3a235b73edf45d80b0e7b86c0d743b098cea6
Parents:
c60890b1c1634e0048d866ab9f3410d00d85f9d3
Message:
fix: branchTo with library proc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/ipshell.cc

    rc60890 rb1cadb0  
    12191219    //Print("branchTo: %s\n",h->Name());
    12201220    iiCurrProc=(idhdl)h->data;
    1221     err=iiAllStart(IDPROC(iiCurrProc),IDPROC(iiCurrProc)->data.s.body,BT_proc,IDPROC(iiCurrProc)->data.s.body_lineno-(iiCurrArgs==NULL));
     1221    procinfo * pi=IDPROC(iiCurrProc);
     1222    if( pi->data.s.body==NULL )
     1223    {
     1224      iiGetLibProcBuffer(pi);
     1225      if (pi->data.s.body==NULL) return TRUE;
     1226    }
     1227    err=iiAllStart(pi,pi->data.s.body,BT_proc,pi->data.s.body_lineno-(iiCurrArgs==NULL));
    12221228    exitBuffer(BT_proc);
    12231229    if (iiCurrArgs!=NULL)
Note: See TracChangeset for help on using the changeset viewer.