From patchwork Fri Sep 27 19:49:38 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Janne Blomqvist X-Patchwork-Id: 278673 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 8CF5A2C00B7 for ; Sat, 28 Sep 2013 05:49:47 +1000 (EST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender :mime-version:date:message-id:subject:from:to:content-type; q= dns; s=default; b=GepgpkY1Zf3Koc2y/aJSblWQK6zgIQaTpg8V/E59FOUkVc B5lK1metKkfFScb/wbAoIV00Uk1ZzvciSx9GtyVhouTgv98XN6mpWl7+LKMtZF3T hY1h0ITQKI4MA9+bB8efejSiJQldLgmmUykkYv6McxHQAfcsjla/j526KmQCM= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender :mime-version:date:message-id:subject:from:to:content-type; s= default; bh=V5lChZytrCq+l+P6iayDWcP03mc=; b=ceDStprl7Vciq3FRr1VT iTNQ8apCTmwdSvf5kbrcZ209QzCXtMTe9bXQa2FBK5JTjCaypMfJLTrm4ZE3I4mB 2adBFB6WgYs5m29DkqWjEaS1k5L1dopzfUB6tIygH8XKM2uxEm/SZPprp3dK6DIW uwDAfYxB7f8LZWl6jvYK/8E= Received: (qmail 6917 invoked by alias); 27 Sep 2013 19:49:41 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org Received: (qmail 6898 invoked by uid 89); 27 Sep 2013 19:49:41 -0000 Received: from mail-oa0-f41.google.com (HELO mail-oa0-f41.google.com) (209.85.219.41) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Fri, 27 Sep 2013 19:49:41 +0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=AWL, BAYES_00, FREEMAIL_FROM, NO_RELAYS autolearn=ham version=3.3.2 X-Spam-User: qpsmtpd, 2 recipients X-HELO: mail-oa0-f41.google.com Received: by mail-oa0-f41.google.com with SMTP id n10so2429608oag.0 for ; Fri, 27 Sep 2013 12:49:38 -0700 (PDT) MIME-Version: 1.0 X-Received: by 10.182.237.75 with SMTP id va11mr7311981obc.5.1380311378775; Fri, 27 Sep 2013 12:49:38 -0700 (PDT) Received: by 10.182.146.15 with HTTP; Fri, 27 Sep 2013 12:49:38 -0700 (PDT) Date: Fri, 27 Sep 2013 22:49:38 +0300 Message-ID: Subject: [Patch, fortran, doc, committed] Fix DATE_AND_TIME example From: Janne Blomqvist To: Fortran List , GCC Patches Hello, a format string in the example for DATE_AND_TIME contained a syntax error. Committed as obvious. 2013-09-27 Janne Blomqvist * intrinsic.texi (DATE_AND_TIME): Fix example. Index: intrinsic.texi =================================================================== --- intrinsic.texi (revision 202983) +++ intrinsic.texi (working copy) @@ -3461,7 +3461,7 @@ program test_time_and_date call date_and_time(TIME=time) call date_and_time(VALUES=values) print '(a,2x,a,2x,a)', date, time, zone - print '(8i5))', values + print '(8i5)', values end program test_time_and_date @end smallexample