Signed-off-by: Sebastien Binet <s@sbinet.org>
---
internal/ctex/ctex.c | 8 ++------
1 file changed, 2 insertions(+), 6 deletions(-)
diff --git a/internal/ctex/ctex.c b/internal/ctex/ctex.c
index 0e5aaef..07a59d4 100644
--- a/internal/ctex/ctex.c
+++ b/internal/ctex/ctex.c
@@ -19433,12 +19433,8 @@ void process(ctex_t *ctx, const char *filename, const char *result,
ctx->dvi_mgr.dvi_file = fopen(result, "w");
const char *args[5] = {
- R"(\nonstopmode)", // omits all stops (\batchmode also omits terminal
- // output)
- R"(\input plain)",
- R"(\input)",
- filename,
- R"(\end)",
+ // omits all stops (\batchmode also omits terminal output)
+ "\\nonstopmode", "\\input plain", "\\input", filename, "\\end",
};
typeset(ctx, 5, args);
}
--
2.30.1