diff options
Diffstat (limited to 'Build/source/texk/web2c/synctexdir/synctex_parser_utils.h')
-rw-r--r-- | Build/source/texk/web2c/synctexdir/synctex_parser_utils.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/Build/source/texk/web2c/synctexdir/synctex_parser_utils.h b/Build/source/texk/web2c/synctexdir/synctex_parser_utils.h index 18348aa6dca..f817853f5f8 100644 --- a/Build/source/texk/web2c/synctexdir/synctex_parser_utils.h +++ b/Build/source/texk/web2c/synctexdir/synctex_parser_utils.h @@ -61,14 +61,11 @@ authorization from the copyright holder. extern "C" { #endif -#define FALSE 0 -#define TRUE !FALSE - # if _WIN32 -# define SYNCTEX_CASE_SENSITIVE_PATH FALSE +# define SYNCTEX_CASE_SENSITIVE_PATH 0 # define SYNCTEX_IS_PATH_SEPARATOR(c) ('/' == c || '\\' == c) # else -# define SYNCTEX_CASE_SENSITIVE_PATH TRUE +# define SYNCTEX_CASE_SENSITIVE_PATH 1 # define SYNCTEX_IS_PATH_SEPARATOR(c) ('/' == c) # endif |