From 628f9bad6db5d72aa585a3f00a81c212cdca7448 Mon Sep 17 00:00:00 2001 From: Stefan Kangas Date: Mon, 26 Aug 2024 02:46:02 +0200 Subject: [PATCH] Fix copyright years by hand (Bug#72809) These are dates that admin/update-copyright did not update. (cherry picked from commit aa6ed7f67ec7ed08224e6ab2aab0a5b65f2bc314) --- configure.ac | 3 +-- doc/lispref/tips.texi | 2 +- etc/images/gud/README | 4 ++-- msdos/autogen/Makefile.in | 4 ++-- nt/emacs.rc.in | 2 +- nt/emacsclient.rc.in | 2 +- test/lisp/which-key-tests.el | 2 +- 7 files changed, 9 insertions(+), 10 deletions(-) diff --git a/configure.ac b/configure.ac index f657c231bf7..ffed1900f61 100644 --- a/configure.ac +++ b/configure.ac @@ -7688,8 +7688,7 @@ send your change to bug-gnu-emacs@gnu.org])])]) AH_TOP([/* GNU Emacs site configuration template file. -Copyright (C) 1988, 1993-1994, 1999-2002, 2004-2021 - Free Software Foundation, Inc. +Copyright (C) 1988-2024 Free Software Foundation, Inc. This file is part of GNU Emacs. diff --git a/doc/lispref/tips.texi b/doc/lispref/tips.texi index dc0679ed3a1..e3d695b2347 100644 --- a/doc/lispref/tips.texi +++ b/doc/lispref/tips.texi @@ -1057,7 +1057,7 @@ explains these conventions, starting with an example: @group ;;; foo.el --- Support for the Foo programming language -*- lexical-binding: t; -*- -;; Copyright (C) 2010-2021 Your Name +;; Copyright (C) 2010-2024 Your Name @end group ;; Author: Your Name diff --git a/etc/images/gud/README b/etc/images/gud/README index 6cdcce35fba..a3d083bf674 100644 --- a/etc/images/gud/README +++ b/etc/images/gud/README @@ -31,7 +31,7 @@ their copyright assignment included the icons. The following icons are converted from the Insight Windows style icon set in src/gdb/gdbtk/library/images2. -Copyright (C) 2002-2021 Free Software Foundation, Inc. +Copyright (C) 2002-2024 Free Software Foundation, Inc. License: GNU General Public License version 3 or later (see COPYING) cont.pbm and cont.xpm were converted from continue.gif @@ -47,7 +47,7 @@ License: GNU General Public License version 3 or later (see COPYING) The following icons are created from the Insight Windows style icon set in src/gdb/gdbtk/library/images2. -Copyright (C) 2002-2021 Free Software Foundation, Inc. +Copyright (C) 2002-2024 Free Software Foundation, Inc. License: GNU General Public License version 3 or later (see COPYING) rcont.xpm rfinish.xpm diff --git a/msdos/autogen/Makefile.in b/msdos/autogen/Makefile.in index 18403250875..4225cc72bcc 100644 --- a/msdos/autogen/Makefile.in +++ b/msdos/autogen/Makefile.in @@ -13,7 +13,7 @@ @SET_MAKE@ -# Copyright (C) 2002-2021 Free Software Foundation, Inc. +# Copyright (C) 2002-2024 Free Software Foundation, Inc. # # This file is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -36,7 +36,7 @@ # Generated by gnulib-tool. # Reproduce by: gnulib-tool --import --dir=. --lib=libgnu --source-base=lib --m4-base=m4 --doc-base=doc --tests-base=tests --aux-dir=build-aux --avoid=close --avoid=dup --avoid=fchdir --avoid=fstat --avoid=malloc-posix --avoid=msvc-inval --avoid=msvc-nothrow --avoid=open --avoid=openat-die --avoid=opendir --avoid=raise --avoid=save-cwd --avoid=select --avoid=sigprocmask --avoid=sys_types --avoid=threadlib --makefile-name=gnulib.mk --conditional-dependencies --no-libtool --macro-prefix=gl --no-vc-files alloca-opt byteswap c-ctype c-strcase careadlinkat close-stream count-one-bits count-trailing-zeros crypto/md5 crypto/sha1 crypto/sha256 crypto/sha512 dtoastr dtotimespec dup2 environ execinfo faccessat fcntl fcntl-h fdatasync fdopendir filemode fstatat fsync getloadavg getopt-gnu gettime gettimeofday intprops largefile lstat manywarnings memrchr mkostemp mktime pipe2 pselect pthread_sigmask putenv qacl readlink readlinkat sig2str socklen stat-time stdalign stdarg stdbool stdio strftime strtoimax strtoumax symlink sys_stat sys_time time timer-time timespec-add timespec-sub unsetenv utimens warnings -# Copyright (C) 2002-2021 Free Software Foundation, Inc. +# Copyright (C) 2002-2024 Free Software Foundation, Inc. # # This file is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/nt/emacs.rc.in b/nt/emacs.rc.in index ed217887c5d..5ef3da1c537 100644 --- a/nt/emacs.rc.in +++ b/nt/emacs.rc.in @@ -31,7 +31,7 @@ BEGIN VALUE "FileDescription", "GNU Emacs: The extensible self-documenting text editor\0" VALUE "FileVersion", "@comma_space_version@\0" VALUE "InternalName", "Emacs\0" - VALUE "LegalCopyright", "Copyright (C) 2001-2021\0" + VALUE "LegalCopyright", "Copyright (C) 2001-2024\0" VALUE "OriginalFilename", "emacs.exe" VALUE "ProductName", "Emacs\0" VALUE "ProductVersion", "@comma_space_version@\0" diff --git a/nt/emacsclient.rc.in b/nt/emacsclient.rc.in index c061f06528e..b5f865c6092 100644 --- a/nt/emacsclient.rc.in +++ b/nt/emacsclient.rc.in @@ -25,7 +25,7 @@ BEGIN VALUE "FileDescription", "GNU EmacsClient: Client for the extensible self-documenting text editor\0" VALUE "FileVersion", "@comma_space_version@\0" VALUE "InternalName", "EmacsClient\0" - VALUE "LegalCopyright", "Copyright (C) 2001-2021\0" + VALUE "LegalCopyright", "Copyright (C) 2001-2024\0" VALUE "OriginalFilename", "emacsclientw.exe" VALUE "ProductName", "EmacsClient\0" VALUE "ProductVersion", "@comma_space_version@\0" diff --git a/test/lisp/which-key-tests.el b/test/lisp/which-key-tests.el index 3b42a7bd504..27081bc5565 100644 --- a/test/lisp/which-key-tests.el +++ b/test/lisp/which-key-tests.el @@ -1,6 +1,6 @@ ;;; which-key-tests.el --- Tests for which-key.el -*- lexical-binding: t; -*- -;; Copyright (C) 2017-2021 Free Software Foundation, Inc. +;; Copyright (C) 2017-2024 Free Software Foundation, Inc. ;; Author: Justin Burkett ;; Maintainer: Justin Burkett -- 2.39.5