Changeset 71df1a in git


Ignore:
Timestamp:
May 8, 2006, 5:37:15 PM (17 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', '8d54773d6c9e2f1d2593a28bc68b7eeab54ed529')
Children:
54b460b5e3bb8b89e445c43cbe3540f147ea8d84
Parents:
af1bbd7f9a15b44a6c9b3c91785ae9f93f7cb750
Message:
*hannes: attribute handling


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

Legend:

Unmodified
Added
Removed
  • Singular/attrib.cc

    raf1bbd7 r71df1a  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: attrib.cc,v 1.24 2005-07-27 15:47:52 Singular Exp $ */
     4/* $Id: attrib.cc,v 1.25 2006-05-08 15:37:15 Singular Exp $ */
    55
    66/*
     
    143143void * atGet(leftv root,char * name)
    144144{
    145   attr temp = root->attribute->get(name);
     145  attr temp;
     146  if (e==NULL)
     147    temp = root->attribute->get(name);
     148  else
     149    temp = (root->LData())->attribute->get(name);
    146150  if ((temp==NULL) && (root->rtyp==IDHDL))
    147151  {
Note: See TracChangeset for help on using the changeset viewer.