| 151 | } |
| 152 | |
| 153 | void atSet(idhdl root, char * name,void * data,int typ) |
| 154 | { |
| 155 | if (root!=NULL) |
| 156 | { |
| 157 | if ((IDTYP(root)!=RING_CMD) |
| 158 | && (!RingDependend(IDTYP(root)))&&(RingDependend(typ))) |
| 159 | WerrorS("cannot set ring-dependend objects at this type"); |
| 160 | else |
| 161 | root->attribute=root->attribute->set(name,data,typ); |
| 162 | } |
| 163 | } |
| 164 | |
| 165 | void atSet(leftv root, char * name,void * data,int typ) |
| 166 | { |
no test coverage detected