aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/grecs-lex.l2
-rw-r--r--src/preproc.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/grecs-lex.l b/src/grecs-lex.l
index b4c6032..49c9435 100644
--- a/src/grecs-lex.l
+++ b/src/grecs-lex.l
@@ -245,7 +245,7 @@ multiline_strip_tabs (char *text)
static int
unquote_char (int c)
{
- static char quote_transtab[] = "\\\\a\ab\bf\fn\nr\rt\t";
+ static char quote_transtab[] = "\\\\\"\"a\ab\bf\fn\nr\rt\tv\v";
char *p;
diff --git a/src/preproc.c b/src/preproc.c
index 1be7bbc..9f25f77 100644
--- a/src/preproc.c
+++ b/src/preproc.c
@@ -608,7 +608,7 @@ grecs_preproc_run (const char *config_file, const char *extpp)
}
else
cmd = xstrdup (extpp);
- //FIXME_DEBUG_F1 (2, "Running preprocessor: `%s'", cmd);
+ /*FIXME_DEBUG_F1 (2, "Running preprocessor: `%s'", cmd);*/
outfile = popen (cmd, "w");
if (!outfile)
{
@@ -640,7 +640,7 @@ grecs_preproc_extrn_start (const char *file_name, pid_t *ppid)
int i;
FILE *fp = NULL;
- //FIXME_DEBUG_F1 (2, "Running preprocessor: `%s'", ppcmd);
+ /*FIXME_DEBUG_F1 (2, "Running preprocessor: `%s'", ppcmd);*/
pipe (pout);
switch (pid = fork ())

Return to:

Send suggestions and report system problems to the System administrator.