Changeset 640 for CMT


Ignore:
Timestamp:
Jun 6, 2013, 3:27:38 PM (11 years ago)
Author:
rybkin
Message:

merge -r 629:630 HEAD

Location:
CMT/v1r25-branch
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • CMT/v1r25-branch

  • CMT/v1r25-branch/ChangeLog

    r639 r640  
     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/v1r25-branch/mgr/fragments/constituent

    • Property svn:mergeinfo changed (with no actual effect on merging)
  • CMT/v1r25-branch/mgr/fragments/constituent_lock

    • Property svn:mergeinfo changed (with no actual effect on merging)
  • CMT/v1r25-branch/mgr/fragments/jar

    • Property svn:mergeinfo changed (with no actual effect on merging)
  • CMT/v1r25-branch/mgr/fragments/java

    • Property svn:mergeinfo changed (with no actual effect on merging)
  • CMT/v1r25-branch/source/cmt_parser.cxx

    r637 r640  
    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        }
  • CMT/v1r25-branch/source/cmt_project.cxx

    • Property svn:mergeinfo changed (with no actual effect on merging)
Note: See TracChangeset for help on using the changeset viewer.