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() {
148
148
149
149
command = new ArrayList <>();
150
150
command .add (env .getCtags ());
151
- command .add ("--c- kinds=+l" );
151
+ command .add ("--kinds-c =+l" );
152
152
153
153
// Workaround for bug #14924: Don't get local variables in Java
154
154
// code since that creates many false positives.
155
155
// CtagsTest : bug14924 "too many methods" guards for this
156
156
// universal ctags are however safe, so enabling for them
157
- command .add ("--java- kinds=+l" );
157
+ command .add ("--kinds-java =+l" );
158
158
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" );
162
162
command .add ("--file-scope=yes" );
163
163
command .add ("-u" );
164
164
command .add ("--filter=yes" );
You can’t perform that action at this time.
0 commit comments