Changeset 6ea48d in git


Ignore:
Timestamp:
Jan 21, 2008, 7:04:48 PM (15 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
Children:
0ffce332c594302f017fa7d64d16013e1ef8c724
Parents:
a2f282249ec19cfc23097e0a535f65c7b4cf87fa
Message:
*hannes: error messages


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

Legend:

Unmodified
Added
Removed
  • Singular/iparith.cc

    ra2f282 r6ea48d  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: iparith.cc,v 1.464 2008-01-21 11:19:52 Singular Exp $ */
     4/* $Id: iparith.cc,v 1.465 2008-01-21 18:04:48 Singular Exp $ */
    55
    66/*
     
    75067506        if (proccall)
    75077507        {
    7508           Werror("%s(`%s`,`%s`) is not supported"
     7508          Werror("%s(`%s`,`%s`) failed"
    75097509                ,s,Tok2Cmdname(at),Tok2Cmdname(bt));
    75107510        }
    75117511        else
    75127512        {
    7513           Werror("`%s` %s `%s` is not supported"
     7513          Werror("`%s` %s `%s` failed"
    75147514                ,Tok2Cmdname(at),s,Tok2Cmdname(bt));
    75157515        }
     
    76967696        i=ti;
    76977697        char *s = iiTwoOps(op);
    7698         Werror("%s(`%s`) is not supported"
     7698        Werror("%s(`%s`) failed"
    76997699                ,s,Tok2Cmdname(at));
    77007700        if (BVERBOSE(V_SHOW_USE))
     
    78807880        while ((dArith3[i].cmd!=op)&&(dArith3[i].cmd!=0)) i++;
    78817881        char *s = iiTwoOps(op);
    7882         Werror("%s(`%s`,`%s`,`%s`) is not supported"
     7882        Werror("%s(`%s`,`%s`,`%s`) failed"
    78837883                ,s,Tok2Cmdname(at),Tok2Cmdname(bt),Tok2Cmdname(ct));
    78847884        if (BVERBOSE(V_SHOW_USE))
     
    80258025      {
    80268026        char *s = iiTwoOps(op);
    8027         Werror("%s(...) is not supported",s);
     8027        Werror("%s(...) failed",s);
    80288028      }
    80298029    }
Note: See TracChangeset for help on using the changeset viewer.