From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 32306 invoked by alias); 23 Mar 2012 08:58:32 -0000 Received: (qmail 32286 invoked by uid 22791); 23 Mar 2012 08:58:30 -0000 X-SWARE-Spam-Status: No, hits=-1.7 required=5.0 tests=AWL,BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,FREEMAIL_FROM,KAM_STOCKGEN,RCVD_IN_DNSWL_LOW X-Spam-Check-By: sourceware.org Received: from mail-lb0-f175.google.com (HELO mail-lb0-f175.google.com) (209.85.217.175) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Fri, 23 Mar 2012 08:57:55 +0000 Received: by lbbgi4 with SMTP id gi4so2396040lbb.20 for ; Fri, 23 Mar 2012 01:57:54 -0700 (PDT) MIME-Version: 1.0 Received: by 10.112.84.195 with SMTP id b3mr4088397lbz.107.1332493074079; Fri, 23 Mar 2012 01:57:54 -0700 (PDT) Received: by 10.152.129.105 with HTTP; Fri, 23 Mar 2012 01:57:54 -0700 (PDT) Date: Fri, 23 Mar 2012 08:58:00 -0000 Message-ID: Subject: [Patch, fortran] Remove unused GFC_MAX_LINE macro From: Janne Blomqvist To: Fortran List , GCC Patches Content-Type: text/plain; charset=UTF-8 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org X-SW-Source: 2012-03/txt/msg01551.txt.bz2 Hi, the maximum line length is nowadays decided dynamically at runtime as specified by the chosen standard version, or overridden by the -fline-length option. The patch below removes the GFC_MAX_LINE macro which is no longer used. Committed to trunk as obvious. Index: gfortran.h =================================================================== --- gfortran.h (revision 185726) +++ gfortran.h (working copy) @@ -42,7 +42,6 @@ along with GCC; see the file COPYING3. /* Major control parameters. */ #define GFC_MAX_SYMBOL_LEN 63 /* Must be at least 63 for F2003. */ -#define GFC_MAX_LINE 132 /* Characters beyond this are not seen. */ #define GFC_LETTERS 26 /* Number of letters in the alphabet. */ #define MAX_SUBRECORD_LENGTH 2147483639 /* 2**31-9 */ Index: ChangeLog =================================================================== --- ChangeLog (revision 185726) +++ ChangeLog (working copy) @@ -1,3 +1,7 @@ +2012-03-23 Janne Blomqvist + + * gfortran.h (GFC_MAX_LINE): Remove unused macro. + 2012-03-19 Francois-Xavier Coudert PR fortran/52559 -- Janne Blomqvist