Changeset ece273 in git


Ignore:
Timestamp:
Feb 4, 2005, 3:43:19 PM (18 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', '00e2e9c41af3fde1273eb3633f4c0c7c3db2579d')
Children:
70504e0e59aca3d6b5349420147a7147e47e8e53
Parents:
f8362b458adfbc85cbe2df1a814f2b540b0eaab2
Message:
*hannes: proc variables


git-svn-id: file:///usr/local/Singular/svn/trunk@7706 2c84dea3-7e68-4137-9b89-c4e89433aadc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/iparith.cc

    rf8362b rece273  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: iparith.cc,v 1.335 2005-02-04 14:33:13 Singular Exp $ */
     4/* $Id: iparith.cc,v 1.336 2005-02-04 14:43:07 Singular Exp $ */
    55
    66/*
     
    14461446{
    14471447  idrec tmp_proc;
     1448  Subexpr e;
     1449  void *d;
     1450  int typ;
    14481451  BOOLEAN t=FALSE;
    14491452  if (u->rtyp!=IDHDL)
    14501453  {
    14511454    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()
    14541457    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;
    14561460    t=TRUE;
     1461    typ=u->rtyp; u->rtyp=IDHDL;
    14571462  }
    14581463#ifdef HAVE_NS
     
    14671472  if (t)
    14681473  {
    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;
    14711477  }
    14721478  if (sl==NULL)
Note: See TracChangeset for help on using the changeset viewer.