summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/web2c/coerce.h
diff options
context:
space:
mode:
authorPeter Breitenlohner <peb@mppmu.mpg.de>2010-04-20 11:16:07 +0000
committerPeter Breitenlohner <peb@mppmu.mpg.de>2010-04-20 11:16:07 +0000
commitfb7b7f390bf542b5455bf9aae21fb48d8efb1f65 (patch)
treed02c5302ea3a8fdeb014476f341c416e3f15e49b /Build/source/texk/web2c/web2c/coerce.h
parentd95737629889ac1b61bc8cc4828de6ad1b17fc9c (diff)
build system: texk/web2c/ cleanup
git-svn-id: svn://tug.org/texlive/trunk@17943 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/web2c/web2c/coerce.h')
-rw-r--r--Build/source/texk/web2c/web2c/coerce.h37
1 files changed, 2 insertions, 35 deletions
diff --git a/Build/source/texk/web2c/web2c/coerce.h b/Build/source/texk/web2c/web2c/coerce.h
index 5a8cf92a4e5..d2feb82a340 100644
--- a/Build/source/texk/web2c/web2c/coerce.h
+++ b/Build/source/texk/web2c/web2c/coerce.h
@@ -7,27 +7,6 @@
Therefore, we have to redefine these macros so they don't cast
their argument (of type memoryword or fourquarters, respectively). */
-#ifdef luaTeX
-
-#ifdef print_word
-#undef print_word
-#define print_word(x) zprint_word (x)
-#endif
-
-/* luatex doesn't have tfm_qqqq */
-
-#ifdef eq_destroy
-#undef eq_destroy
-#define eq_destroy(x) zeq_destroy(x)
-#endif
-
-#ifdef synch_p_with_c
-#undef synch_p_with_c
-#define synch_p_with_c(x) zsynch_p_with_c(x)
-#endif
-
-#else /* luaTeX */
-
#ifdef printword
#undef printword
#define printword(x) zprintword (x)
@@ -43,8 +22,6 @@
#define eqdestroy(x) zeqdestroy(x)
#endif
-#endif
-
/* And we use the opportunity to declare a few functions that could not be
declared in texmfmp.h, because they need typedefs not yet known at that
point. */
@@ -64,33 +41,23 @@ extern void paintrow (screenrow, pixelcolor, transspec, screencol);
extern strnumber makefullnamestring(void);
#ifdef TeX
-#ifndef luaTeX
extern string gettexstring (strnumber);
-#endif
/* Prototypes for source-specials functions... */
extern boolean isnewsource (strnumber, int);
extern poolpointer makesrcspecial (strnumber, int);
extern void remembersourceinfo (strnumber, int);
#endif
-#ifdef luaTeX
-#include <luatexdir/luatex.h>
-#endif /* luaTeX */
-
/* When compiling the lib in luatexdir, we -DpdfTeX so code can be more
easily shared. But we can't have both pdftexd.h and luatexd.h, etc. */
-#if defined (pdfTeX) && !defined (luaTeX)
+#ifdef pdfTeX
#include <pdftexdir/pdftex.h>
-#endif /* pdfTeX and not luaTeX */
+#endif /* pdfTeX */
#ifdef XeTeX
#include <xetexdir/xetex.h>
#endif /* XeTeX */
#if defined(TeX) && defined(__SyncTeX__)
-#ifdef luaTeX
-#include <luatexdir/utils/synctex.h>
-#else
#include <synctexdir/synctex.h>
#endif
-#endif