Changeset 2d4638 in git for Singular/iparith.cc


Ignore:
Timestamp:
Mar 9, 1999, 3:13:57 PM (25 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', 'a719bcf0b8dbc648b128303a49777a094b57592c')
Children:
b19380134f922cde04d5eaaa0618c77039c732cf
Parents:
d78e6e2c82ab8bd96284f77386c71eff6908b71a
Message:
*hannes: fixed error message for maps


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

Legend:

Unmodified
Added
Removed
  • Singular/iparith.cc

    rd78e6e r2d4638  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: iparith.cc,v 1.131 1999-03-09 12:26:20 obachman Exp $ */
     4/* $Id: iparith.cc,v 1.132 1999-03-09 14:13:41 Singular Exp $ */
    55
    66/*
     
    13351335  //Print("try to map %s with %s\n",$3.Name(),$1.Name());
    13361336  leftv sl=NULL;
    1337   if (v->e==NULL)
     1337  if ((v->e==NULL)&&(v->name!=NULL))
    13381338  {
    13391339    map m=(map)u->Data();
    13401340    sl=iiMap(m,v->name);
    13411341  }
    1342   //else
    1343   //{
    1344   //  WerrorS("map_id(<name>) expected");
    1345   //}
     1342  else
     1343  {
     1344    Werror("%s(<name>) expected",u->Nmae());
     1345  }
    13461346  if (sl==NULL) return TRUE;
    13471347  memcpy(res,sl,sizeof(sleftv));
Note: See TracChangeset for help on using the changeset viewer.