File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
opengrok-indexer/src/main/java/org/opengrok/indexer/analysis Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -148,17 +148,17 @@ private void initialize() {
148148
149149 command = new ArrayList <>();
150150 command .add (env .getCtags ());
151- command .add ("--c- kinds=+l" );
151+ command .add ("--kinds-c =+l" );
152152
153153 // Workaround for bug #14924: Don't get local variables in Java
154154 // code since that creates many false positives.
155155 // CtagsTest : bug14924 "too many methods" guards for this
156156 // universal ctags are however safe, so enabling for them
157- command .add ("--java- kinds=+l" );
157+ command .add ("--kinds-java =+l" );
158158
159- command .add ("--sql- kinds=+l" );
160- command .add ("--Fortran- kinds=+L" );
161- command .add ("--C++-kinds =+l" );
159+ command .add ("--kinds-sql =+l" );
160+ command .add ("--kinds-Fortran =+L" );
161+ command .add ("--kinds- C++=+l" );
162162 command .add ("--file-scope=yes" );
163163 command .add ("-u" );
164164 command .add ("--filter=yes" );
You can’t perform that action at this time.
0 commit comments