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
Hey :)
I have the following exemplary C file /tmp/a.c:
/tmp/a.c
int main() { //12345678\foo return 0; }
For simplicity I diff the file with itself:
gumtree dotdiff /tmp/a.c /tmp/a.c > /tmp/diff.dot
This generates a dot file with the following line:
... n_src_7 [label="comment: //12345678\", color=lightgrey]; ...
Now the backslash being at this very specific place escapes the quote... which leads to an error:
dot -T png /tmp/diff.dot -o /tmp/diff.png Error: /tmp/diff.dot: syntax error in line 25 near '['
Maybe this can be fixed somehow :)
Thanks!
The text was updated successfully, but these errors were encountered:
jrfaller
No branches or pull requests
Hey :)
I have the following exemplary C file
/tmp/a.c
:For simplicity I diff the file with itself:
This generates a dot file with the following line:
Now the backslash being at this very specific place escapes the quote... which leads to an error:
Maybe this can be fixed somehow :)
Thanks!
The text was updated successfully, but these errors were encountered: