From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 6390 invoked by alias); 28 Mar 2012 17:35:45 -0000 Received: (qmail 6295 invoked by uid 22791); 28 Mar 2012 17:35:43 -0000 X-SWARE-Spam-Status: No, hits=-6.9 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_HI,SPF_HELO_PASS,T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Wed, 28 Mar 2012 17:35:30 +0000 Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id q2SHZGpN000727 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Wed, 28 Mar 2012 13:35:16 -0400 Received: from barimba (ovpn01.gateway.prod.ext.phx2.redhat.com [10.5.9.1]) by int-mx09.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id q2SHZFm2013400 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-SHA bits=128 verify=NO); Wed, 28 Mar 2012 13:35:16 -0400 From: Tom Tromey To: Joel Brobecker Cc: gdb-patches@sourceware.org Subject: Re: RFC: add .dir-locals.el References: <87bonj8aa0.fsf@fleche.redhat.com> <20120326190625.GA2701@adacore.com> <87398v88fe.fsf@fleche.redhat.com> Date: Wed, 28 Mar 2012 17:35:00 -0000 In-Reply-To: <87398v88fe.fsf@fleche.redhat.com> (Tom Tromey's message of "Mon, 26 Mar 2012 13:32:37 -0600") Message-ID: <8762do1ve4.fsf@fleche.redhat.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.94 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2012-03/txt/msg00954.txt.bz2 >>>>> "Joel" == Tom Tromey writes: Joel> I think it should have a copyright header, though.... Tom> Will do. Here is what I am checking in. Tom 2012-03-28 Tom Tromey * .dir-locals.el: New file. Index: .dir-locals.el =================================================================== RCS file: .dir-locals.el diff -N .dir-locals.el --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ .dir-locals.el 28 Mar 2012 17:35:04 -0000 @@ -0,0 +1,24 @@ +;; Emacs settings. +;; Copyright (C) 2012 Free Software Foundation, Inc. + +;; This program is free software; you can redistribute it and/or modify +;; it under the terms of the GNU General Public License as published by +;; the Free Software Foundation; either version 3 of the License, or +;; (at your option) any later version. + +;; This program is distributed in the hope that it will be useful, +;; but WITHOUT ANY WARRANTY; without even the implied warranty of +;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +;; GNU General Public License for more details. + +;; You should have received a copy of the GNU General Public License +;; along with this program. If not, see . + +( + (tcl-mode . ((tcl-indent-level . 4) + (tcl-continued-indent-level . 4) + (indent-tabs-mode . t))) + (nil . ((bug-reference-url-format . "http://sourceware.org/bugzilla/show_bug.cgi?id=%s"))) + (c-mode . ((c-file-style . "GNU") + (indent-tabs-mode . t))) +)