diff options
author | Akira Kakuto <kakuto@fuk.kindai.ac.jp> | 2011-06-11 04:14:30 +0000 |
---|---|---|
committer | Akira Kakuto <kakuto@fuk.kindai.ac.jp> | 2011-06-11 04:14:30 +0000 |
commit | 96dffefd6bfc232fd6f7a3426f4b7bad5b695ed6 (patch) | |
tree | e5eb24f0e1fc86a9d32065cec94e11951c700b83 /Build/source/texk/web2c/synctexdir/synctex_parser_utils.c | |
parent | b439631e2c3a99a345993513013a2ace563bdd3b (diff) |
fix a typo.
git-svn-id: svn://tug.org/texlive/trunk@22910 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/web2c/synctexdir/synctex_parser_utils.c')
-rw-r--r-- | Build/source/texk/web2c/synctexdir/synctex_parser_utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |