Changeset ece273 in git
- Timestamp:
- Feb 4, 2005, 3:43:19 PM (18 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', '00e2e9c41af3fde1273eb3633f4c0c7c3db2579d')
- Children:
- 70504e0e59aca3d6b5349420147a7147e47e8e53
- Parents:
- f8362b458adfbc85cbe2df1a814f2b540b0eaab2
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/iparith.cc
rf8362b rece273 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: iparith.cc,v 1.33 5 2005-02-04 14:33:13Singular Exp $ */4 /* $Id: iparith.cc,v 1.336 2005-02-04 14:43:07 Singular Exp $ */ 5 5 6 6 /* … … 1446 1446 { 1447 1447 idrec tmp_proc; 1448 Subexpr e; 1449 void *d; 1450 int typ; 1448 1451 BOOLEAN t=FALSE; 1449 1452 if (u->rtyp!=IDHDL) 1450 1453 { 1451 1454 tmp_proc.id="_auto"; 1452 tmp_proc.typ= IDHDL;1453 tmp_proc.data.pinf=(procinfo *)u-> data;1455 tmp_proc.typ=PROC_CMD; 1456 tmp_proc.data.pinf=(procinfo *)u->Data(); 1454 1457 tmp_proc.ref=1; 1455 u->data=(void *)&tmp_proc; 1458 d=u->data; u->data=(void *)&tmp_proc; 1459 e=u->e; u->e=NULL; 1456 1460 t=TRUE; 1461 typ=u->rtyp; u->rtyp=IDHDL; 1457 1462 } 1458 1463 #ifdef HAVE_NS … … 1467 1472 if (t) 1468 1473 { 1469 u->rtyp=PROC_CMD; 1470 u->data=(void *)tmp_proc.data.pinf; 1474 u->rtyp=typ; 1475 u->data=d; 1476 u->e=e; 1471 1477 } 1472 1478 if (sl==NULL)
Note: See TracChangeset
for help on using the changeset viewer.