Changeset 329
- Timestamp:
- Nov 20, 2006, 2:32:46 PM (19 years ago)
- Location:
- CMT/v1r20b1/source
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
CMT/v1r20b1/source/cmt_commands.cxx
r282 r329 488 488 } 489 489 490 // cerr << "argc=" << argc << " reduced_arg=[" << reduced_arg << "] arg=[" << arg << "]" << endl;490 // cerr << "argc=" << argc << " reduced_arg=[" << reduced_arg << "] arg=[" << arg << "]" << endl; 491 491 492 492 if (parsers.has (reduced_arg)) … … 1756 1756 Here we are going to change the complete tag set 1757 1757 */ 1758 1759 1758 if (arg != "") 1760 1759 { … … 1781 1780 { 1782 1781 const cmt_string& a = words[i]; 1783 1782 //if (!cmt.m_quiet) cout << "parse_argument(tag_add)> current_tag=" << a << endl; 1784 1783 cmt_string s = ","; 1785 1784 s += a; … … 1790 1789 cmt.m_current_tag = a; 1791 1790 1792 if (CmtSystem::testenv ("TAGDEBUG")) cerr1793 1791 if (CmtSystem::testenv ("TAGDEBUG")) 1792 cerr << "parse_argument(tag_add)> current_tag=" << cmt.m_current_tag << endl; 1794 1793 } 1795 1794 … … 1805 1804 1806 1805 tag = Tag::add (a, PriorityArgument, "arguments", 0); 1807 1808 1806 tag->mark (); 1809 1810 1807 cmt.m_extra_tags += a; 1811 1808 cmt.m_extra_tags += ","; 1812 1809 } 1813 1810 } 1811 // To be sure that a tag 1812 Cmt::guess_current_project (); 1814 1813 } 1815 1814 } … … 1819 1818 Tag* tag; 1820 1819 CmtSystem::cmt_string_vector words; 1821 1822 //if (!cmt.m_quiet) cerr<< "-tag_add=" << arg << endl;1820 1821 if (!cmt.m_quiet) cout << "-tag_add=" << arg << endl; 1823 1822 1824 1823 CmtSystem::split (arg, " \t,", words); -
CMT/v1r20b1/source/cmt_parser.cxx
r325 r329 4957 4957 { 4958 4958 ArgParser ap (Me); 4959 4959 4960 4960 ap.argc = argc; 4961 4961 ap.argv = argv; … … 4966 4966 exit (0); 4967 4967 } 4968 4968 4969 4969 4970 clear (); … … 4988 4989 Me.m_current_access = DeveloperMode; 4989 4990 } 4990 4991 4991 4992 parse_arguments (ap); 4992 4993 4993 4994 if (Me.m_debug) 4994 4995 { -
CMT/v1r20b1/source/cmt_syntax.cxx
r328 r329 263 263 if (project != 0) 264 264 { 265 project->set_strategy (strategy, value, project->get_use()->get_package_name ());266 //project->set_strategy (strategy, value, "");265 // project->set_strategy (strategy, value, project->get_use()->get_package_name ()); 266 project->set_strategy (strategy, value, ""); 267 267 } 268 268 }
Note:
See TracChangeset
for help on using the changeset viewer.