Changeset b565d4 in git for Singular


Ignore:
Timestamp:
Nov 16, 2011, 5:44:47 PM (12 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', '2a584933abf2a2d3082034c7586d38bb6de1a30a')
Children:
016648e66f1ba47dcd04e7815a1679555d738074
Parents:
d5add65b944701e25c47c31e8a82156f5758328d
git-author:
Hans Schoenemann <hannes@mathematik.uni-kl.de>2011-11-16 17:44:47+01:00
git-committer:
Martin Lee <martinlee84@web.de>2013-01-18 16:15:04+01:00
Message:
add: option(noredefine) also for export
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/ipshell.cc

    rd5add65 rb565d4  
    12791279  idhdl h=(idhdl)v->data;
    12801280  //Print("iiInternalExport('%s',%d)%s\n", v->name, toLev,"");
    1281   if (IDLEV(h)==0) Warn("`%s` is already global",IDID(h));
     1281  if (IDLEV(h)==0)
     1282  {
     1283    if (!BVERBOSE(V_REDEFINE)) Warn("`%s` is already global",IDID(h));
     1284  }
    12821285  else
    12831286  {
     
    14381441        if ((pack==currPack) && (old==(idhdl)v->data))
    14391442        {
    1440           Warn("`%s` is already global",IDID(old));
     1443          if (!BVERBOSE(V_REDEFINE)) Warn("`%s` is already global",IDID(old));
    14411444          break;
    14421445        }
Note: See TracChangeset for help on using the changeset viewer.