@@ -1738,24 +1738,24 @@ extern size_t countEntryInCorkQueue (void)
17381738 return ptrArrayCount (TagFile .corkQueue );
17391739}
17401740
1741- extern void markTagPlaceholder (tagEntryInfo * e , bool placeholder )
1741+ extern void markTagAsPlaceholder (tagEntryInfo * e , bool placeholder )
17421742{
17431743 e -> placeholder = placeholder ;
17441744}
17451745
1746- extern void markCorkEntryPlaceholder (int index , bool placeholder )
1746+ extern void markCorkEntryAsPlaceholder (int index , bool placeholder )
17471747{
17481748 tagEntryInfo * e = getEntryInCorkQueue (index );
17491749 if (e )
1750- markTagPlaceholder (e , placeholder );
1750+ markTagAsPlaceholder (e , placeholder );
17511751}
17521752
17531753extern int makePlaceholder (const char * const name )
17541754{
17551755 tagEntryInfo e ;
17561756
17571757 initTagEntry (& e , name , KIND_GHOST_INDEX );
1758- markTagPlaceholder (& e , true);
1758+ markTagAsPlaceholder (& e , true);
17591759
17601760 /*
17611761 * makePlaceholder may be called even before reading any bytes
@@ -2158,7 +2158,7 @@ extern const char* getTagFileDirectory (void)
21582158 return TagFile .directory ;
21592159}
21602160
2161- static bool markAsPlaceholder (int index , tagEntryInfo * e , void * data CTAGS_ATTR_UNUSED )
2161+ static bool markAsPlaceholderRecursively (int index , tagEntryInfo * e , void * data CTAGS_ATTR_UNUSED )
21622162{
21632163 e -> placeholder = 1 ;
21642164 markAllEntriesInScopeAsPlaceholder (index );
@@ -2167,5 +2167,5 @@ static bool markAsPlaceholder (int index, tagEntryInfo *e, void *data CTAGS_ATT
21672167
21682168extern void markAllEntriesInScopeAsPlaceholder (int index )
21692169{
2170- foreachEntriesInScope (index , NULL , markAsPlaceholder , NULL );
2170+ foreachEntriesInScope (index , NULL , markAsPlaceholderRecursively , NULL );
21712171}
0 commit comments