Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions modules/synctex/synctex_parser.c
Original file line number Diff line number Diff line change
Expand Up @@ -6977,11 +6977,8 @@ synctex_node_p synctex_scanner_input(synctex_scanner_p scanner) {
}
synctex_node_p synctex_scanner_input_with_tag(synctex_scanner_p scanner, int tag) {
synctex_node_p input = scanner?scanner->input:NULL;
while (_synctex_data_tag(input)!=tag) {
if ((input = __synctex_tree_sibling(input))) {
continue;
}
break;
while (input && _synctex_data_tag(input)!=tag) {
input = __synctex_tree_sibling(input);
}
return input;
}
Expand Down
2 changes: 1 addition & 1 deletion modules/synctex/synctex_parser_version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.30
1.31
4 changes: 2 additions & 2 deletions modules/synctex/synctex_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,10 @@ I would appreciate to be listed as contributor and see "__SyncTeX__" highlighted

/* The version of the synctex parser library */
# define SYNCTEX_VERSION_MAJOR 1
# define SYNCTEX_VERSION_MINOR 30
# define SYNCTEX_VERSION_MINOR 31

/* Keep next value in synch with `synctex_parser_version.txt` contents. */
# define SYNCTEX_VERSION_STRING "1.30"
# define SYNCTEX_VERSION_STRING "1.31"

/* The version of the synctex CLI tool */
# define SYNCTEX_CLI_VERSION_MAJOR 1
Expand Down
Loading