We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
input.java:
{_(
building ctags:
./configure --enable-debugging; make clean;make
Running ctags:
$ ./ctags --options=NONE --kinds-Java=+l /tmp/input.java ctags: Notice: No options will be read from files or environment ctags: ./main/vstring.h:110: vStringPutImpl: Assertion `c >= 0 && c <= 0xff' failed. ctags: ./main/vstring.h:110: parsing /tmp/input.java:1 as Java zsh: IOT instruction (core dumped) ./ctags --options=NONE --kinds-Java=+l /tmp/input.java
The text was updated successfully, but these errors were encountered:
Related to #3449.
The following files must be inspected.
This may be a chance toremove c.c that includes OldC and OldC++.
A fix can be:
@@ -2310,7 +2310,9 @@ static int parseParens (statementInfo *const st, parenInfo *const info) do { int c = skipToNonWhite (); - vStringPut (Signature, c); + + if (! (c == CHAR_SYMBOL || c == STRING_SYMBOL || c == EOF)) + vStringPut (Signature, c); switch (c)
Sorry, something went wrong.
Vera: revise the dataflow of cppGetc -> vStringPut
8d950a8
Close universal-ctags#3771. Did the same as universal-ctags#3796. Signed-off-by: Masatake YAMATO <yamato@redhat.com>
masatake
Successfully merging a pull request may close this issue.
input.java:
building ctags:
Running ctags:
The text was updated successfully, but these errors were encountered: