From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 27726 invoked by alias); 16 Jun 2008 04:41:05 -0000 Received: (qmail 27525 invoked by uid 48); 16 Jun 2008 04:40:19 -0000 Date: Mon, 16 Jun 2008 04:41:00 -0000 Message-ID: <20080616044019.27524.qmail@sourceware.org> X-Bugzilla-Reason: CC References: Subject: [Bug libfortran/36546] Namelist error with tab following a comma and newline In-Reply-To: Reply-To: gcc-bugzilla@gcc.gnu.org To: gcc-bugs@gcc.gnu.org From: "jvdelisle at gcc dot gnu dot org" Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org X-SW-Source: 2008-06/txt/msg00995.txt.bz2 ------- Comment #2 from jvdelisle at gcc dot gnu dot org 2008-06-16 04:40 ------- Proposed patch, fixes the test case. Testing still. Index: list_read.c =================================================================== --- list_read.c (revision 136821) +++ list_read.c (working copy) @@ -366,7 +366,7 @@ eat_separator (st_parameter_dt *dtp) } } } - while (c == '\n' || c == '\r' || c == ' '); + while (c == '\n' || c == '\r' || c == ' ' || c == '\t'); unget_char (dtp, c); } break; -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=36546