Changeset e0749e8 in git
- Timestamp:
- Oct 25, 2005, 7:14:12 PM (18 years ago)
- Branches:
- (u'spielwiese', '91fdef05f09f54b8d58d92a472e9c4a43aa4656f')
- Children:
- 2971ea6f2b7ed7331e23db7e6ddfb028a2239a36
- Parents:
- 2a8ba2f495d0eef78f76a200311e4ef726eabbf2
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/iplib.cc
r2a8ba2 re0749e8 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: iplib.cc,v 1.11 8 2005-10-11 11:31:08Singular Exp $ */4 /* $Id: iplib.cc,v 1.119 2005-10-25 17:14:12 Singular Exp $ */ 5 5 /* 6 6 * ABSTRACT: interpreter: LIB and help … … 324 324 /* start interpreter ======================================*/ 325 325 myynest++; 326 err=yyparse(); 326 if (myynest > 1000) 327 { 328 WerrorS("nesting too deep (>1000)"); 329 err=TRUE; 330 } 331 else 332 { 333 err=yyparse(); 327 334 #ifdef HAVE_NS 328 335 #ifndef NDEBUG 329 checkall();330 #endif 331 #endif 332 if (sLastPrinted.rtyp!=0)333 {334 sLastPrinted.CleanUp();335 }336 //Print("kill locals for %s (level %d)\n",IDID(pn),myynest);337 killlocals(myynest);336 checkall(); 337 #endif 338 #endif 339 if (sLastPrinted.rtyp!=0) 340 { 341 sLastPrinted.CleanUp(); 342 } 343 //Print("kill locals for %s (level %d)\n",IDID(pn),myynest); 344 killlocals(myynest); 338 345 #ifdef HAVE_NS 339 346 #ifndef NDEBUG 340 checkall(); 341 #endif 342 #endif 343 //Print("end kill locals for %s (%d)\n",IDID(pn),myynest); 347 checkall(); 348 #endif 349 #endif 350 //Print("end kill locals for %s (%d)\n",IDID(pn),myynest); 351 } 344 352 myynest--; 345 353 si_echo=old_echo;
Note: See TracChangeset
for help on using the changeset viewer.