From 4b5ef150751f2c3756ab0d7773688abd487d054f Mon Sep 17 00:00:00 2001 From: simonmar Date: Tue, 22 Jan 2002 15:55:59 +0000 Subject: [PATCH] [project @ 2002-01-22 15:55:59 by simonmar] Fix wibbles in previous commit. --- ghc/utils/unlit/unlit.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ghc/utils/unlit/unlit.c b/ghc/utils/unlit/unlit.c index a454351..475a41f 100644 --- a/ghc/utils/unlit/unlit.c +++ b/ghc/utils/unlit/unlit.c @@ -348,8 +348,8 @@ char **argv; { } /* Prefix the output with line pragmas */ - if (add_line_prag_long) { - fprintf(ostream, "# 1 \"%s\"\n");{-# LINE 1 \"%s\" #-}\n", prefix_str, prefix_str); + if (prefix_str) { + fprintf(ostream, "#line 1 \"%s\"\n);{-# LINE 1 \"%s\" #-}\n", prefix_str, prefix_str); } unlit(file, istream, ostream); -- 1.7.10.4