Changeset 95ba43 in git
- Timestamp:
- May 5, 1998, 3:20:46 PM (25 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- 799ce11543c064381d54987ef7e025d2669f7648
- Parents:
- 9c869e72c49e4835d2901a9187c1e93f8a328cf8
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/iplib.cc
r9c869e r95ba43 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: iplib.cc,v 1.2 1 1998-04-27 14:58:09 kruegerExp $ */4 /* $Id: iplib.cc,v 1.22 1998-05-05 13:20:46 obachman Exp $ */ 5 5 /* 6 6 * ABSTRACT: interpreter: LIB and help … … 506 506 print_init(); 507 507 # endif 508 if (BVERBOSE(V_LOAD_LIB)) Print( "// ** loading %s...", libnamebuf);508 // if (BVERBOSE(V_LOAD_LIB)) Print( "// ** loading %s...", libnamebuf); 509 509 yylplex(newlib, libnamebuf, &lib_style); 510 if( (lib_style == OLD_LIBSTYLE) && (BVERBOSE(V_LOAD_LIB)))511 Warn( "library %s has an old format. Please fix it for the next time",512 newlib);513 else {514 if (BVERBOSE(V_LOAD_LIB)) Print("done.\n");515 }516 510 if(yylp_errno) { 517 511 Werror("Library %s: ERROR occured: in line %d, %d.", newlib, yylplineno, … … 523 517 FreeL((ADDRESS)newlib); 524 518 return TRUE; 519 } 520 if (BVERBOSE(V_LOAD_LIB)) Print( "// ** loaded %s", libnamebuf); 521 if( (lib_style == OLD_LIBSTYLE) && (BVERBOSE(V_LOAD_LIB))) 522 Warn( "library %s has an old format. Please fix it for the next time", 523 newlib); 524 else { 525 if (BVERBOSE(V_LOAD_LIB)) Print("\n"); 525 526 } 526 527 reinit_yylp();
Note: See TracChangeset
for help on using the changeset viewer.