summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAkira Kakuto <kakuto@fuk.kindai.ac.jp>2011-06-11 04:14:30 +0000
committerAkira Kakuto <kakuto@fuk.kindai.ac.jp>2011-06-11 04:14:30 +0000
commit96dffefd6bfc232fd6f7a3426f4b7bad5b695ed6 (patch)
treee5eb24f0e1fc86a9d32065cec94e11951c700b83
parentb439631e2c3a99a345993513013a2ace563bdd3b (diff)
fix a typo.
git-svn-id: svn://tug.org/texlive/trunk@22910 c570f23f-e606-0410-a88d-b1316a301751
-rw-r--r--Build/source/texk/web2c/synctexdir/ChangeLog4
-rw-r--r--Build/source/texk/web2c/synctexdir/synctex_parser_utils.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/Build/source/texk/web2c/synctexdir/ChangeLog b/Build/source/texk/web2c/synctexdir/ChangeLog
index b2e11a76ef8..dc50ff4f15e 100644
--- a/Build/source/texk/web2c/synctexdir/ChangeLog
+++ b/Build/source/texk/web2c/synctexdir/ChangeLog
@@ -1,3 +1,7 @@
+2011-06-11 Akira Kakuto <kakuto@fuk.kindai.ac.jp>
+
+ * synctex_parser_utils.c: fix a typo.
+
2011-05-13 Taco Hoekwater <taco@luatex.org>
* synctex-luatex.h: synchronization_field_size has to be 1 for luatex.
diff --git a/Build/source/texk/web2c/synctexdir/synctex_parser_utils.c b/Build/source/texk/web2c/synctexdir/synctex_parser_utils.c
index 5c544126ae6..6bcba560880 100644
--- a/Build/source/texk/web2c/synctexdir/synctex_parser_utils.c
+++ b/Build/source/texk/web2c/synctexdir/synctex_parser_utils.c
@@ -170,7 +170,7 @@ next_character:
}
} else if(SYNCTEX_IS_PATH_SEPARATOR(*rhs)) {/* rhs points to a path separator but not lhs */
return synctex_NO;
- } else {else if(toupper(*lhs) != toupper(*rhs)){/* uppercase do not match */
+ } else if(toupper(*lhs) != toupper(*rhs)){/* uppercase do not match */
return synctex_NO;
} else if (!*lhs) {/* lhs is at the end of the string */
return *rhs ? synctex_NO : synctex_YES;