From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 70234 invoked by alias); 25 Oct 2017 19:11:12 -0000 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 Received: (qmail 70022 invoked by uid 89); 25 Oct 2017 19:11:12 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-11.1 required=5.0 tests=BAYES_00,FREEMAIL_FROM,GIT_PATCH_2,GIT_PATCH_3,KAM_ASCII_DIVIDERS,RCVD_IN_DNSWL_NONE,SPF_PASS autolearn=ham version=3.3.2 spammy= X-Spam-User: qpsmtpd, 2 recipients X-HELO: mail-wr0-f172.google.com Received: from mail-wr0-f172.google.com (HELO mail-wr0-f172.google.com) (209.85.128.172) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 25 Oct 2017 19:11:11 +0000 Received: by mail-wr0-f172.google.com with SMTP id l8so997707wre.12; Wed, 25 Oct 2017 12:11:10 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:cc:subject:message-id:mime-version :content-disposition:user-agent; bh=3ohCTaevOO79sp1eR2ZQ5RLOSm+or79T4A81KFv2JKE=; b=mcdvIi1SU8RbQEbmPZYe6dhOAJVVANyb+8LhARhTiZjh71VGm0h7hAd248l+PjFIlJ qA75XRQMDLPdBndN3AGc34mXBF0ncBwViH8iSmi0OXgowx87cybJ5UnXKCy56/Ejttmq /rfyjZXnB28ANi69512vhqnPM5Gt1xYwabXKIVg9qRh6iUhpJuTRElIzJtKiCC76yAMk iT+ogDgUBsF9dUcmvmNTe10diB8DSbtPi0b6ndxcgqxgX/Y5JFTmmh9ceCqZK3426r1v iM4itwMtyP71Nrz/GYijl5kRkiDXV3tPU827LgP4kQsggFMV3Igm3LEppiiPPfxDvF7a S44g== X-Gm-Message-State: AMCzsaWx99Y3YXlX0t/gNoEezC9VHrTXHbNfSbBnMIU8MN4a77Jacd7w DRFCJx5Pkn2eww8+9y1p2I2wiQ== X-Google-Smtp-Source: ABhQp+S8hyDTSauAbp0dDk6xSCsWTj2npRYhiImvyGfE1wxSAEP8p30u7gknSPxg7ji5uMc0KctX/w== X-Received: by 10.223.146.101 with SMTP id 92mr2975576wrj.21.1508958668500; Wed, 25 Oct 2017 12:11:08 -0700 (PDT) Received: from nbbrfq.cc.univie.ac.at (91-119-120-24.dsl.dynamic.surfer.at. [91.119.120.24]) by smtp.gmail.com with ESMTPSA id 66sm3569567wmm.30.2017.10.25.12.11.07 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Wed, 25 Oct 2017 12:11:07 -0700 (PDT) Date: Wed, 25 Oct 2017 19:11:00 -0000 From: Bernhard Reutner-Fischer To: Fortran List Cc: GCC Patches Subject: [PATCH, FORTRAN, committed] typo in error message in gfc_match_type_is Message-ID: <20171025191105.zugxl5jmrgnqpfht@nbbrfq.cc.univie.ac.at> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="j4prkh37efhnxrh2" Content-Disposition: inline User-Agent: NeoMutt/20170609 (1.8.3) X-IsSubscribed: yes X-SW-Source: 2017-10/txt/msg01836.txt.bz2 --j4prkh37efhnxrh2 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-length: 47 Hi! Committed as obvious as r254082. thanks, --j4prkh37efhnxrh2 Content-Type: text/x-diff; charset=us-ascii Content-Disposition: inline; filename="gfc_match_type_is-syntax-error-typo.patch" Content-length: 773 Index: gcc/fortran/match.c =================================================================== --- gcc/fortran/match.c (revision 254081) +++ gcc/fortran/match.c (working copy) @@ -6204,7 +6204,7 @@ return MATCH_YES; syntax: - gfc_error ("Ssyntax error in TYPE IS specification at %C"); + gfc_error ("Syntax error in TYPE IS specification at %C"); cleanup: if (c != NULL) Index: gcc/fortran/ChangeLog =================================================================== --- gcc/fortran/ChangeLog (revision 254081) +++ gcc/fortran/ChangeLog (working copy) @@ -1,3 +1,7 @@ +2017-10-25 Bernhard Reutner-Fischer + + * match.c (gfc_match_type_is): Fix typo in error message. + 2017-10-21 Paul Thomas PR fortran/82586 --j4prkh37efhnxrh2--