Changeset 2a2c07 in git for Singular/subexpr.cc


Ignore:
Timestamp:
Apr 18, 1997, 1:25:03 PM (27 years ago)
Author:
Olaf Bachmann <obachman@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
d6a968ad46e91f0ffffede4a68649eea37ed52c6
Parents:
ef304d9dba21b588603cac1440c1ae1fe53a012e
Message:
Fri Apr 18 09:47:22 1997  Olaf Bachmann
<obachman@ratchwum.mathematik.uni-kl.de (Olaf Bachmann)>

	* silink.cc (DumpAsciiIdhdl): LIB string is dumped without type
	  declaration

	* mpsr_Get.cc (InitIdentifierLeftv): used mpsr_SetCurrRing(r,
	  TRUE) so that pOne works if no ring did previously exist.

	* iparith.cc: Added jjPROC3.

Tue Apr 15 12:07:17 1997  Olaf Bachmann
<obachman@ratchwum.mathematik.uni-kl.de (Olaf Bachmann)>

	* silink.cc (slStandardInit): changed Ascii type specifyer from
	  "ascii" to "Ascii" for consistency

	* iparith.cc : added #else branch to #ifdef HAVE_FGLM in proc table

	*  (extra.cc): system("sh",command) returns exit status of command


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

Legend:

Unmodified
Added
Removed
  • Singular/subexpr.cc

    ref304d r2a2c07  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: subexpr.cc,v 1.12 1997-04-09 12:20:14 Singular Exp $ */
     4/* $Id: subexpr.cc,v 1.13 1997-04-18 11:25:03 obachman Exp $ */
    55
    66/*
     
    11991199  {
    12001200    int t=Typ();
    1201     void *d=CopyD(t);
    1202     data=d;
    1203     rtyp=t;
    1204     name=NULL;
    1205     e=NULL;
     1201    if (t!=PROC_CMD)
     1202    {
     1203      void *d=CopyD(t);
     1204      data=d;
     1205      rtyp=t;
     1206      name=NULL;
     1207      e=NULL;
     1208    }
    12061209  }
    12071210  else if (rtyp==COMMAND)
Note: See TracChangeset for help on using the changeset viewer.