From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 1324 invoked by alias); 3 Jan 2009 06:14:12 -0000 Received: (qmail 1316 invoked by uid 22791); 3 Jan 2009 06:14:11 -0000 X-SWARE-Spam-Status: No, hits=-1.7 required=5.0 tests=AWL,BAYES_00,J_CHICKENPOX_33,J_CHICKENPOX_64,SARE_SUB_ENC_UTF8 X-Spam-Check-By: sourceware.org Received: from rock.gnat.com (HELO rock.gnat.com) (205.232.38.15) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Sat, 03 Jan 2009 06:13:36 +0000 Received: from localhost (localhost.localdomain [127.0.0.1]) by filtered-rock.gnat.com (Postfix) with ESMTP id 8E48D2A9654; Sat, 3 Jan 2009 01:13:33 -0500 (EST) Received: from rock.gnat.com ([127.0.0.1]) by localhost (rock.gnat.com [127.0.0.1]) (amavisd-new, port 10024) with LMTP id dbkyIYJGBxAU; Sat, 3 Jan 2009 01:13:33 -0500 (EST) Received: from joel.gnat.com (localhost.localdomain [127.0.0.1]) by rock.gnat.com (Postfix) with ESMTP id B91D42A9632; Sat, 3 Jan 2009 01:13:32 -0500 (EST) Received: by joel.gnat.com (Postfix, from userid 1000) id 2823FE7ACD; Sat, 3 Jan 2009 10:13:25 +0400 (RET) Date: Sat, 03 Jan 2009 06:14:00 -0000 From: Joel Brobecker To: gdb@sourceware.org Cc: ludo@gnu.org Subject: "coding: utf-8" emacs local variable in ChangeLog (?) Message-ID: <20090103061325.GB31571@adacore.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="KsGdsel6WgEHnImy" Content-Disposition: inline Content-Transfer-Encoding: 8bit User-Agent: Mutt/1.4.2.2i Mailing-List: contact gdb-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-owner@sourceware.org X-SW-Source: 2009-01/txt/msg00001.txt.bz2 --KsGdsel6WgEHnImy Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-length: 558 Hello, While rotating the ChangeLog file, I noticed a discrepancy between what the documentation says we should add at the end of the file for emacs: Local Variables: mode: change-log left-margin: 8 fill-column: 74 version-control: never End: And what we actually have. Right now, we have an extra line: +coding: utf-8 I tracked the change to a patch in Aug 2007, but couldn't find the associated discussion in the gdb and gdb-patches mailing list. Is that change OK? If yes, an update of gdbint.texi is in order. -- Joel --KsGdsel6WgEHnImy Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename="coding.diff" Content-Transfer-Encoding: 8bit Content-length: 987 commit bfbc00954f898246d7d3b8aa51bba9136acfaf9d Author: Ludovic CourtÚs Date: Thu Aug 9 22:44:38 2007 +0000 Add Emacs local variables for UTF-8. diff --git a/gdb/ChangeLog b/gdb/ChangeLog index eedb1cc..914fe17 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2007-08-10 Ludovic CourtÚs + + * MAINTAINERS: Add Emacs local variables to use UTF-8 upon + opening. + 2007-08-09 Ludovic CourtÚs * MAINTAINERS (Write After Approval): Add myself. @@ -6236,4 +6241,5 @@ mode: change-log left-margin: 8 fill-column: 74 version-control: never +coding: utf-8 End: diff --git a/gdb/MAINTAINERS b/gdb/MAINTAINERS index a70cd6c..982e60b 100644 --- a/gdb/MAINTAINERS +++ b/gdb/MAINTAINERS @@ -617,3 +617,7 @@ Michael Chastain (testsuite) mec.gnu at mindspring dot com Folks that have been caught up in a paper trail: David Carlton carlton@bactrian.org + +;; Local Variables: +;; coding: utf-8 +;; End: --KsGdsel6WgEHnImy--