VirtualBox

Changeset 2354 in kBuild


Ignore:
Timestamp:
Aug 11, 2009 3:12:52 PM (16 years ago)
Author:
bird
Message:

kdev.e: odin32_maketagfile -> k_rebuild_tagfile.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/VSlickMacros/kdev.e

    r2350 r2354  
    7070def  'C-S-P' = k_mark_modified_line
    7171def  'C-S-S' = k_box_structs
    72 def  'C-S-T' = odin32_maketagfile
     72def  'C-S-T' = k_rebuild_tagfile
    7373def  'C-S-L' = k_style_load
    7474
     
    19701970}
    19711971
    1972 
    1973 /*******************************************************************************
    1974 *   Odin32 backward compatibility                                              *
    1975 *******************************************************************************/
    1976 _command void odin32_maketagfile()
    1977 {
    1978     /* We'll */
     1972/** @todo move to kkeys.e */
     1973_command void k_rebuild_tagfile()
     1974{
     1975#if 1 /*__VERSION__ < 14.0*/
    19791976    if (file_match('-p 'maybe_quote_filename(strip_filename(_project_name,'e'):+TAG_FILE_EXT),1) != "")
    1980     {
    1981         _project_update_files_retag(false,false,false,false);
    1982         /*
    1983         RetagFilesInTagFile2(project_tag_file, orig_view_id, temp_view_id, rebuild_all, false,
    1984                              doRemove,false,true,true);*/
    1985     }
     1977        _project_update_files_retag(false, false, false, false);
    19861978    else
    1987         _project_update_files_retag(true,false,false,true);
    1988 }
    1989 
    1990 _command void odin32_setcurrentdir()
    1991 {
    1992     //_ini_get_value(_project_name,"COMPILER","WORKINGDIR", workingdir);
    1993     //cd(workingdir);
    1994     /* Go the the directory containing the project filename */
    1995     cd(strip_filename(_project_name, 'NE'));
    1996 }
    1997 
    1998 
     1979        _project_update_files_retag(true,  false, false, true);
     1980#else
     1981    _str sArgs = "-refs=on";
     1982    if (file_match('-p 'maybe_quote_filename(strip_filename(_project_name,'e'):+TAG_FILE_EXT),1) != "")
     1983        sArgs = sArgs :+ " -retag";
     1984    sArgs = sArgs :+ " " :+ _workspace_filename;
     1985    build_workspace_tagfiles(sArgs);
     1986#endif
     1987}
    19991988
    20001989
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette