Changeset 33e521 in git
- Timestamp:
- Apr 7, 1998, 9:14:44 PM (25 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', '00e2e9c41af3fde1273eb3633f4c0c7c3db2579d')
- Children:
- 99cfcba795ebe458e864dea1374dafda993d2601
- Parents:
- 37e22dccbc1d4231d5dd6c765a95b61021b1266c
- Location:
- Singular
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/iplib.cc
r37e22d r33e521 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: iplib.cc,v 1.1 6 1998-04-07 17:53:31 Singular Exp $ */4 /* $Id: iplib.cc,v 1.17 1998-04-07 19:14:43 krueger Exp $ */ 5 5 /* 6 6 * ABSTRACT: interpreter: LIB and help … … 70 70 char * iiProcArgs(char *e,BOOLEAN withParenth) 71 71 { 72 while ((*e==' ') || (*e==' (')) e++;72 while ((*e==' ') || (*e=='\t') || (*e=='(')) e++; 73 73 if (*e<' ') 74 74 { … … 502 502 if (BVERBOSE(V_LOAD_LIB)) Print( "// ** loading %s...", libnamebuf); 503 503 yylplex(newlib, libnamebuf, &lib_style); 504 if( lib_style == OLD_LIBSTYLE)504 if( (lib_style == OLD_LIBSTYLE) && (BVERBOSE(V_LOAD_LIB))) 505 505 Warn( "library %s has an old format. Please fix it for the next time", 506 506 newlib); -
Singular/ipshell.cc
r37e22d r33e521 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: ipshell.cc,v 1.1 7 1998-04-03 17:38:41 Singular Exp $ */4 /* $Id: ipshell.cc,v 1.18 1998-04-07 19:14:44 krueger Exp $ */ 5 5 /* 6 6 * ABSTRACT: … … 139 139 ); 140 140 break; 141 case PROC_CMD: break; 141 case PROC_CMD: Print(" from %s",IDPROC(h)->libname); 142 if(IDPROC(h)->is_static) Print(" (static)"); 143 break; 142 144 case STRING_CMD: 143 145 { … … 268 270 if (h!=NULL) 269 271 { 270 271 272 273 274 275 276 277 278 272 if (iterate) list1(prefix,h,TRUE); 273 if ((IDTYP(h)==RING_CMD) 274 || (IDTYP(h)==QRING_CMD) 275 || (IDTYP(h)==PACKAGE_CMD)) 276 { 277 h=IDRING(h)->idroot; 278 } 279 else 280 return; 279 281 } 280 282 else
Note: See TracChangeset
for help on using the changeset viewer.