From f531df0f12bdc9b86f51e0442f2f40096af80d5f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fredrik=20H=C3=BCbinette=20=28Hubbe=29?= <hubbe@hubbe.net> Date: Mon, 28 Feb 2000 19:17:13 -0800 Subject: [PATCH] handle \r\n better Rev: src/preprocessor.h:1.20 --- src/preprocessor.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/preprocessor.h b/src/preprocessor.h index 19276f993b..82779582a3 100644 --- a/src/preprocessor.h +++ b/src/preprocessor.h @@ -1,5 +1,5 @@ /* - * $Id: preprocessor.h,v 1.19 2000/02/17 00:31:14 hubbe Exp $ + * $Id: preprocessor.h,v 1.20 2000/02/29 03:17:13 hubbe Exp $ * * Preprocessor template. * Based on cpp.c 1.45 @@ -1746,6 +1746,7 @@ static INT32 lower_cpp(struct cpp *this, continue; case '\\': + GOBBLE('\r'); /* Should we actually do anything here ? */ if(GOBBLE('\n')) { this->current_line++; -- GitLab