From 474e8cbe94811f01d079516efa6c49da18dbbe8c Mon Sep 17 00:00:00 2001 From: Vincent Celier Date: Thu, 16 Jun 2005 10:44:11 +0200 Subject: [PATCH] prep.adb (Preprocess): Ignore error when scanning the first token of a line. 2005-06-14 Vincent Celier * prep.adb (Preprocess): Ignore error when scanning the first token of a line. From-SVN: r101052 --- gcc/ada/prep.adb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gcc/ada/prep.adb b/gcc/ada/prep.adb index 6b9000c7a0c..5b2435735ed 100644 --- a/gcc/ada/prep.adb +++ b/gcc/ada/prep.adb @@ -6,7 +6,7 @@ -- -- -- B o d y -- -- -- --- Copyright (C) 2002-2003, Free Software Foundation, Inc. -- +-- Copyright (C) 2002-2005, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- @@ -1081,7 +1081,9 @@ package body Prep is -- If the token is EOF, the scan ponter will not move, and the token -- will still be EOF. + Set_Ignore_Errors (To => True); Scan.all; + Set_Ignore_Errors (To => False); end loop Input_Line_Loop; -- Report an error for any missing some "#end if;" -- 2.30.2