diff options
author | Jonathan Kew <jfkthame@googlemail.com> | 2008-05-27 15:14:09 +0000 |
---|---|---|
committer | Jonathan Kew <jfkthame@googlemail.com> | 2008-05-27 15:14:09 +0000 |
commit | 290b8eb1794e8ff24f56ae9c65ec5fbc99ef9fa2 (patch) | |
tree | f84331c4833ba98b6e27c7671ed647c5d50dd3cc /Build/source/texk/web2c/lib/texmfmp.c | |
parent | d47d2af67ed70ba5858628ef78ce2e75ec67416c (diff) |
synctex update; now enabled in pdftex as well as xetex
git-svn-id: svn://tug.org/texlive/trunk@8363 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/web2c/lib/texmfmp.c')
-rw-r--r-- | Build/source/texk/web2c/lib/texmfmp.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Build/source/texk/web2c/lib/texmfmp.c b/Build/source/texk/web2c/lib/texmfmp.c index 45be0e83f78..959395cf277 100644 --- a/Build/source/texk/web2c/lib/texmfmp.c +++ b/Build/source/texk/web2c/lib/texmfmp.c @@ -224,7 +224,7 @@ maininit P2C(int, ac, string *, av) kpse_record_input = recorder_record_input; kpse_record_output = recorder_record_output; -#if /*defined (pdfTeX) ||*/ defined(XeTeX) || defined(__syncTeX__) +#if defined(__SyncTeX__) # warning SyncTeX: -synctex command line option available /* 0 means "disable Synchronize TeXnology". * synctexoption is a *.web variable. @@ -957,7 +957,7 @@ static struct option long_options[] { "no-shell-escape", 0, &shellenabledp, -1 }, { "debug-format", 0, &debugformatfile, 1 }, { "src-specials", 2, 0, 0 }, -#if /*defined(pdfTeX) ||*/ defined(XeTeX) || defined(__syncTeX__) +#if defined(__SyncTeX__) /* Synchronization: just like "interaction" above */ { "synctex", 1, 0, 0 }, #endif @@ -1145,7 +1145,7 @@ parse_options P2C(int, argc, string *, argv) } else if (ARGUMENT_IS ("help")) { usagehelp (PROGRAM_HELP, BUG_ADDRESS); -#if /*defined (pdfTeX) ||*/ defined(XeTeX) || defined(__syncTeX__) +#if defined(__SyncTeX__) } else if (ARGUMENT_IS ("synctex")) { /* Synchronize TeXnology: catching the command line option as a long */ synctexoption = (int) strtol(optarg, NULL, 0); |