Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> writes:
Toggle quote (37 lines)
> * .dir-locals.el: Add copyrights.
>
> The list was first generated with the 'git log --reverse --oneline
> --pretty=";;; Copyright © %ad %an <%ae>" --follow --date="format:%Y" --
> .dir-locals.el' command, and then the lines were regrouped together by hand,
> and finally the names and mails were updated to the ones currently used with
> the help of git grep.
>
> Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
> Change-Id: I010f1e5e3afc8b646da39dc6341f7870f0c9bf45
> ---
> .dir-locals.el | 32 +++++++++++++++++++++++++++++++-
> 1 file changed, 31 insertions(+), 1 deletion(-)
>
> diff --git a/.dir-locals.el b/.dir-locals.el
> index d629b51c8a..b215f53227 100644
> --- a/.dir-locals.el
> +++ b/.dir-locals.el
> @@ -1,5 +1,35 @@
> -;; Per-directory local variables for GNU Emacs 23 and later.
> +;;; GNU Guix --- Functional package management for GNU
> +;;; Copyright © 2012-2023 Ludovic Courtès <ludo@gnu.org>
> +;;; Copyright © 2013,2014 Mark H Weaver <mhw@netris.org>
> +;;; Copyright © 2014 Taylan Ulrich Bayırlı/Kammer <taylanbayirli@gmail.com>
> +;;; Copyright © 2015 David Thompson <davet@gnu.org>
> +;;; Copyright © 2016 Hartmut Goebel <h.goebel@crazy-compilers.com>
> +;;; Copyright © 2017 Alex Kost <alezost@gmail.com>
> +;;; Copyright © 2018-2020 Caleb Ristvedt <caleb.ristvedt@cune.org>
> +;;; Copyright © 2020-2023 Maxim Cournoyer <maxim.cournoyer@gmail.com>
> +;;; Copyright © 2020 Miguel Ángel Arruga Vivas <rosen644835@gmail.com>
> +;;; Copyright © 2020 Christine Lemmer-Webber <cwebber@dustycloud.org>
> +;;; Copyright © 2022 Liliana Marie Prikler <liliana.prikler@gmail.com>
> +;;; Copyright © 2022 Andrew Tropin <andrew@trop.in>
> +;;; Copyright © 2022 Brian Cully <bjc@kublai.com>
> +;;; Copyright © 2023 (unmatched-parenthesis ew syntax <paren@disroot.org>
> +;;; Copyright © 2024 Christopher Baines <mail@cbaines.net>
Interesting, for some reason I am missing here. I wonder why your
command missed these two commits.
Toggle snippet (4 lines)
350be583d4 .dir-locals.el: Configure indentation for home-environment.
9dce86b1cb .dir-locals: Configure indentation for swap-space.
Actually, it look like for example Nicolas Graves is also missing.
Toggle quote (20 lines)
> +;;; This file is part of GNU Guix.
> +;;;
> +;;; GNU Guix 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.
> +;;;
> +;;; GNU Guix 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 GNU Guix. If not, see <http://www.gnu.org/licenses/>.
>
> +;; Per-directory local variables for GNU Emacs 23 and later.
> ((nil
> . ((fill-column . 78)
> (tab-width . 8)
--
There are only two hard things in Computer Science:
cache invalidation, naming things and off-by-one errors.