From bf2896177c2d430b7a57a853f803701adc65bd1e Mon Sep 17 00:00:00 2001 From: ceriel Date: Mon, 31 Oct 1988 14:10:00 +0000 Subject: [PATCH] fixed bug in preprocessor part: #define aap(a) a did not work if the actual argument was spread over multiple lines --- lang/cem/cemcom/scan.c | 2 +- util/cpp/scan.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lang/cem/cemcom/scan.c b/lang/cem/cemcom/scan.c index 60aa3cc7..6e89228e 100644 --- a/lang/cem/cemcom/scan.c +++ b/lang/cem/cemcom/scan.c @@ -160,7 +160,7 @@ copyact(ch1, ch2, lvl) } PushBack(); - copy('\n'); + copy(' '); break; case '/': diff --git a/util/cpp/scan.c b/util/cpp/scan.c index 677f3a0c..5f5f9649 100644 --- a/util/cpp/scan.c +++ b/util/cpp/scan.c @@ -159,7 +159,7 @@ copyact(ch1, ch2, level) } PushBack(); - copy('\n'); + copy(' '); break; case '/':