Skip to content

Commit 9ccefb3

Browse files
author
Vladimir Kotal
committed
drop support for Exuberant ctags
1 parent 3059077 commit 9ccefb3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tools/src/main/python/indexer.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -85,22 +85,22 @@ def get_SCM_properties(self, logger):
8585

8686
def FindCtags(logger):
8787
"""
88-
Search for Exuberant ctags intelligently, skipping over other ctags
88+
Search for Universal ctags intelligently, skipping over other ctags
8989
implementations. Return path to the command or None if not found.
9090
"""
9191
binary = None
9292
logger.debug("Trying to find ctags binary")
9393
for program in ['universal-ctags', 'ctags']:
9494
executable = get_command(logger, None, program)
9595
if executable:
96-
# Verify that this executable is or is based on Exuberant Ctags
96+
# Verify that this executable is or is Universal Ctags
9797
# by matching the output when run with --version.
9898
logger.debug("Checking ctags command {}".format(executable))
9999
cmd = Command([executable, '--version'], logger=logger)
100100
cmd.execute()
101101

102102
output_str = cmd.getoutputstr()
103-
if output_str and output_str.find("Exuberant Ctags") != -1:
103+
if output_str and output_str.find("Universal Ctags") != -1:
104104
logger.debug("Got valid ctags binary: {}".format(executable))
105105
binary = executable
106106
break
@@ -129,7 +129,7 @@ def FindCtags(logger):
129129
# always check ctags presence unless told not to.
130130
#
131131
if not args.no_ctags_check and not FindCtags(logger):
132-
logger.warning("Unable to determine Exuberant/Universal CTags command")
132+
logger.warning("Unable to determine Universal CTags command")
133133

134134
indexer = Indexer(args.options, logger=logger, java=args.java,
135135
jar=args.jar, java_opts=args.java_opts)

0 commit comments

Comments
 (0)