Changeset 630 for CMT


Ignore:
Timestamp:
Jan 28, 2013, 4:24:03 PM (11 years ago)
Author:
rybkin
Message:

See C.L. 501

Location:
CMT/HEAD
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • CMT/HEAD/ChangeLog

    r629 r630  
     12013-01-28    <rybkin@lal.in2p3.fr> 501
     2
     3        * source/cmt_parser.cxx: In class Cmt functions print_symbol_names,
     4        print_macros, exclude aliases when showing set names, sets, with same
     5        result for commands "cmt show set_names", "cmt show sets"
     6       
    172013-01-25    <rybkin@lal.in2p3.fr> 500
    28
  • CMT/HEAD/source/cmt_parser.cxx

    r629 r630  
    78107810      if (Me.m_action == action_show_macro_names)
    78117811        {
    7812           // Only keep macros.
     7812          // Keep macros,
     7813          // setup, cleanup scripts.
    78137814          if ((symbol.type == Symbol::SymbolSet) ||
    78147815              (symbol.type == Symbol::SymbolAlias) ||
     
    78187819      else if (Me.m_action == action_show_set_names)
    78197820        {
    7820           // Exclude macros, actions.
     7821          // Keep paths, sets,
     7822          // setup, cleanup scripts.
    78217823          if ((symbol.type == Symbol::SymbolMacro) ||
     7824              (symbol.type == Symbol::SymbolAlias) ||
    78227825              (symbol.type == Symbol::SymbolAction)) continue;
    78237826        }
     
    78667869      if (Me.m_action == action_show_macros)
    78677870        {
    7868           // Only keep macros.
     7871          // Keep macros,
     7872          // setup, cleanup scripts.
    78697873          if ((symbol.type == Symbol::SymbolSet) ||
    78707874              (symbol.type == Symbol::SymbolAlias) ||
     
    78747878      else if (Me.m_action == action_show_sets)
    78757879        {
    7876           // Exclude macros.
     7880          // Keep paths, sets,
     7881          // setup, cleanup scripts.
    78777882          if ((symbol.type == Symbol::SymbolMacro) ||
     7883              (symbol.type == Symbol::SymbolAlias) ||
    78787884              (symbol.type == Symbol::SymbolAction)) continue;
    78797885        }
Note: See TracChangeset for help on using the changeset viewer.