summaryrefslogtreecommitdiff
path: root/Build
diff options
context:
space:
mode:
Diffstat (limited to 'Build')
-rw-r--r--Build/source/texk/web2c/synctexdir/ChangeLog4
-rw-r--r--Build/source/texk/web2c/synctexdir/synctex_parser.c4
2 files changed, 6 insertions, 2 deletions
diff --git a/Build/source/texk/web2c/synctexdir/ChangeLog b/Build/source/texk/web2c/synctexdir/ChangeLog
index d5985f1f45e..1b1166a122b 100644
--- a/Build/source/texk/web2c/synctexdir/ChangeLog
+++ b/Build/source/texk/web2c/synctexdir/ChangeLog
@@ -1,3 +1,7 @@
+2017-07-15 Akira Kakuto <kakuto@fuk.kindai.ac.jp>
+
+ * synctex_parser.c: Remove double definition of synctex_iterator_s.
+
2017-07-14 Akira Kakuto <kakuto@fuk.kindai.ac.jp>
* synctex_parser.c, synctex_parser_util.c: Support
diff --git a/Build/source/texk/web2c/synctexdir/synctex_parser.c b/Build/source/texk/web2c/synctexdir/synctex_parser.c
index 5f044a5ffa3..bab4688ff23 100644
--- a/Build/source/texk/web2c/synctexdir/synctex_parser.c
+++ b/Build/source/texk/web2c/synctexdir/synctex_parser.c
@@ -6963,12 +6963,12 @@ static synctex_nd_s _synctex_eq_closest_child_v2(synctex_point_p hitP, synctex_n
# pragma mark Queries
# endif
-typedef struct synctex_iterator_t {
+struct synctex_iterator_t {
synctex_node_p seed;
synctex_node_p next;
int count0;
int count;
-} synctex_iterator_s;
+};
SYNCTEX_INLINE static synctex_iterator_p _synctex_iterator_new(synctex_node_p result, int count) {
synctex_iterator_p iterator;