diff options
author | Akira Kakuto <kakuto@fuk.kindai.ac.jp> | 2017-07-15 23:03:35 +0000 |
---|---|---|
committer | Akira Kakuto <kakuto@fuk.kindai.ac.jp> | 2017-07-15 23:03:35 +0000 |
commit | d7725afb64cdf8bb09c849df6f9c6b814a1f2857 (patch) | |
tree | 8ffdf2414404062762f7f139cd657181aa74a2a1 /Build/source/texk | |
parent | b1ce47fe4d0e1f06d1b019c3c6eb5f1b0ecd5e14 (diff) |
remove duplicated definition of type
git-svn-id: svn://tug.org/texlive/trunk@44814 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk')
-rw-r--r-- | Build/source/texk/web2c/synctexdir/ChangeLog | 4 | ||||
-rw-r--r-- | Build/source/texk/web2c/synctexdir/synctex_parser.c | 4 |
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; |