summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJérôme Laurens <jerome.laurens@u-bourgogne.fr>2010-01-17 09:17:21 +0000
committerJérôme Laurens <jerome.laurens@u-bourgogne.fr>2010-01-17 09:17:21 +0000
commit3ef45f121b2400ef5c6896eee0cf334828dfd5b9 (patch)
tree25d8514a77a3fcb9001632aad8f37f60ae6f532b
parent8e0605eedd66a39088ea1e55cadf9743a3df221c (diff)
Bug fix in synctex_parser.c, function synctex_node_box_visible_v: 'x' replaced by 'y'. Only 3rd party tools are concerned.
git-svn-id: svn://tug.org/texlive/trunk@16756 c570f23f-e606-0410-a88d-b1316a301751
-rw-r--r--Build/source/texk/web2c/synctexdir/synctex_parser.c4
-rw-r--r--Build/source/texk/web2c/synctexdir/synctex_parser_readme.txt6
-rw-r--r--Build/source/texk/web2c/synctexdir/synctex_parser_version.txt2
3 files changed, 9 insertions, 3 deletions
diff --git a/Build/source/texk/web2c/synctexdir/synctex_parser.c b/Build/source/texk/web2c/synctexdir/synctex_parser.c
index 7caafe88513..fb06768eefb 100644
--- a/Build/source/texk/web2c/synctexdir/synctex_parser.c
+++ b/Build/source/texk/web2c/synctexdir/synctex_parser.c
@@ -3086,10 +3086,10 @@ float synctex_node_box_visible_v(synctex_node_t node){
case synctex_node_type_vbox:
case synctex_node_type_void_vbox:
case synctex_node_type_void_hbox:
- return SYNCTEX_VERT(node)*node->class->scanner->unit+node->class->scanner->x_offset;
+ return SYNCTEX_VERT(node)*node->class->scanner->unit+node->class->scanner->y_offset;
case synctex_node_type_hbox:
result:
- return SYNCTEX_VERT_V(node)*node->class->scanner->unit+node->class->scanner->x_offset;
+ return SYNCTEX_VERT_V(node)*node->class->scanner->unit+node->class->scanner->y_offset;
}
if((node = SYNCTEX_PARENT(node)) && (node->class->type != synctex_node_type_sheet)) {
goto result;
diff --git a/Build/source/texk/web2c/synctexdir/synctex_parser_readme.txt b/Build/source/texk/web2c/synctexdir/synctex_parser_readme.txt
index c57f6987d29..613bc304821 100644
--- a/Build/source/texk/web2c/synctexdir/synctex_parser_readme.txt
+++ b/Build/source/texk/web2c/synctexdir/synctex_parser_readme.txt
@@ -99,6 +99,12 @@ Note that version 1.7 was delivered privately.
- Various typo fixed
- OutputDebugString replaced by OutputDebugStringA to deliberately disable unicode preprocessing
- New conditional created because OutputDebugStringA is only available since Windows 2K professional
+1.10: Sun Jan 10 10:12:32 UTC 2010
+- Bug fix in synctex_parser.c to solve a synchronization problem with amsmath's gather environment.
+ Concerns the synctex tool.
+1.11: Sun Jan 17 09:12:31 UTC 2010
+- Bug fix in synctex_parser.c, function synctex_node_box_visible_v: 'x' replaced by 'y'.
+ Only 3rd party tools are concerned.
Acknowledgments:
----------------
diff --git a/Build/source/texk/web2c/synctexdir/synctex_parser_version.txt b/Build/source/texk/web2c/synctexdir/synctex_parser_version.txt
index 578c71bd558..b8162070734 100644
--- a/Build/source/texk/web2c/synctexdir/synctex_parser_version.txt
+++ b/Build/source/texk/web2c/synctexdir/synctex_parser_version.txt
@@ -1 +1 @@
-1.10 \ No newline at end of file
+1.11 \ No newline at end of file