aboutsummaryrefslogtreecommitdiffstats
path: root/exec
diff options
context:
space:
mode:
authorPo Lu2024-01-02 10:30:05 +0800
committerPo Lu2024-01-02 10:30:05 +0800
commit070cb32463a8c606bf4384574a6c7ea60167e87d (patch)
tree61f3406414a9604d8ecc3ca5b6f622318444b48d /exec
parentecf08f0621c25ad1dfadd96399e204c389ab1695 (diff)
downloademacs-070cb32463a8c606bf4384574a6c7ea60167e87d.tar.gz
emacs-070cb32463a8c606bf4384574a6c7ea60167e87d.zip
; Add 2024 to copyright years
Diffstat (limited to 'exec')
-rw-r--r--exec/Makefile.in2
-rw-r--r--exec/config-mips.m4.in2
-rwxr-xr-xexec/config.guess2
-rwxr-xr-xexec/config.sub2
-rw-r--r--exec/configure.ac2
-rw-r--r--exec/deps.mk2
-rw-r--r--exec/exec.c2
-rw-r--r--exec/exec.h2
-rw-r--r--exec/exec1.c2
-rw-r--r--exec/loader-aarch64.s2
-rw-r--r--exec/loader-armeabi.s2
-rw-r--r--exec/loader-mips64el.s2
-rw-r--r--exec/loader-mipsel.s2
-rw-r--r--exec/loader-x86.s2
-rw-r--r--exec/loader-x86_64.s2
-rw-r--r--exec/mipsel-user.h2
-rw-r--r--exec/mipsfpu.c2
-rw-r--r--exec/mipsfpu.h2
-rw-r--r--exec/test.c2
-rw-r--r--exec/trace.c2
20 files changed, 20 insertions, 20 deletions
diff --git a/exec/Makefile.in b/exec/Makefile.in
index 00e59771337..068f59efc75 100644
--- a/exec/Makefile.in
+++ b/exec/Makefile.in
@@ -1,6 +1,6 @@
1### @configure_input@ 1### @configure_input@
2 2
3# Copyright (C) 2023 Free Software Foundation, Inc. 3# Copyright (C) 2023-2024 Free Software Foundation, Inc.
4 4
5# This file is part of GNU Emacs. 5# This file is part of GNU Emacs.
6 6
diff --git a/exec/config-mips.m4.in b/exec/config-mips.m4.in
index 72632765bd0..67a14e36b61 100644
--- a/exec/config-mips.m4.in
+++ b/exec/config-mips.m4.in
@@ -1,6 +1,6 @@
1dnl Assembler templates for MIPS computers. 1dnl Assembler templates for MIPS computers.
2dnl 2dnl
3dnl Copyright (C) 2023 Free Software Foundation, Inc. 3dnl Copyright (C) 2023-2024 Free Software Foundation, Inc.
4dnl 4dnl
5dnl This file is part of GNU Emacs. 5dnl This file is part of GNU Emacs.
6dnl 6dnl
diff --git a/exec/config.guess b/exec/config.guess
index e7a6fe3e6d1..62974adb3dd 100755
--- a/exec/config.guess
+++ b/exec/config.guess
@@ -1,6 +1,6 @@
1#!/usr/bin/sh 1#!/usr/bin/sh
2# Attempt to guess a canonical system name. 2# Attempt to guess a canonical system name.
3# Copyright 1992-2023 Free Software Foundation, Inc. 3# Copyright 1992-2024 Free Software Foundation, Inc.
4 4
5# shellcheck disable=SC2006,SC2268 # see below for rationale 5# shellcheck disable=SC2006,SC2268 # see below for rationale
6 6
diff --git a/exec/config.sub b/exec/config.sub
index a6d99a0f15f..7ab92879f13 100755
--- a/exec/config.sub
+++ b/exec/config.sub
@@ -1,6 +1,6 @@
1#!/usr/bin/sh 1#!/usr/bin/sh
2# Configuration validation subroutine script. 2# Configuration validation subroutine script.
3# Copyright 1992-2023 Free Software Foundation, Inc. 3# Copyright 1992-2024 Free Software Foundation, Inc.
4 4
5# shellcheck disable=SC2006,SC2268 # see below for rationale 5# shellcheck disable=SC2006,SC2268 # see below for rationale
6 6
diff --git a/exec/configure.ac b/exec/configure.ac
index 180c200d13d..594e82ce624 100644
--- a/exec/configure.ac
+++ b/exec/configure.ac
@@ -4,7 +4,7 @@ dnl autoconf
4dnl in the directory containing this script. 4dnl in the directory containing this script.
5dnl If you changed any AC_DEFINES, also run autoheader. 5dnl If you changed any AC_DEFINES, also run autoheader.
6dnl 6dnl
7dnl Copyright (C) 2023 Free Software Foundation, Inc. 7dnl Copyright (C) 2023-2024 Free Software Foundation, Inc.
8dnl 8dnl
9dnl This file is part of GNU Emacs. 9dnl This file is part of GNU Emacs.
10dnl 10dnl
diff --git a/exec/deps.mk b/exec/deps.mk
index 20fcd2dbc5a..2425503ab44 100644
--- a/exec/deps.mk
+++ b/exec/deps.mk
@@ -1,6 +1,6 @@
1### deps.mk 1### deps.mk
2 2
3## Copyright (C) 2023 Free Software Foundation, Inc. 3## Copyright (C) 2023-2024 Free Software Foundation, Inc.
4 4
5## This file is part of GNU Emacs. 5## This file is part of GNU Emacs.
6 6
diff --git a/exec/exec.c b/exec/exec.c
index 231b5b1c46a..254a983f25f 100644
--- a/exec/exec.c
+++ b/exec/exec.c
@@ -1,6 +1,6 @@
1/* Program execution for Emacs. 1/* Program execution for Emacs.
2 2
3Copyright (C) 2023 Free Software Foundation, Inc. 3Copyright (C) 2023-2024 Free Software Foundation, Inc.
4 4
5This file is part of GNU Emacs. 5This file is part of GNU Emacs.
6 6
diff --git a/exec/exec.h b/exec/exec.h
index 8ee74d7ca8b..bed5edc9bab 100644
--- a/exec/exec.h
+++ b/exec/exec.h
@@ -1,6 +1,6 @@
1/* Program execution for Emacs. 1/* Program execution for Emacs.
2 2
3Copyright (C) 2023 Free Software Foundation, Inc. 3Copyright (C) 2023-2024 Free Software Foundation, Inc.
4 4
5This file is part of GNU Emacs. 5This file is part of GNU Emacs.
6 6
diff --git a/exec/exec1.c b/exec/exec1.c
index 6ec4b3ecaae..aaff9a94c62 100644
--- a/exec/exec1.c
+++ b/exec/exec1.c
@@ -1,6 +1,6 @@
1/* Program execution for Emacs. 1/* Program execution for Emacs.
2 2
3Copyright (C) 2023 Free Software Foundation, Inc. 3Copyright (C) 2023-2024 Free Software Foundation, Inc.
4 4
5This file is part of GNU Emacs. 5This file is part of GNU Emacs.
6 6
diff --git a/exec/loader-aarch64.s b/exec/loader-aarch64.s
index da8ec1f4977..0fc9606c62a 100644
--- a/exec/loader-aarch64.s
+++ b/exec/loader-aarch64.s
@@ -1,4 +1,4 @@
1// Copyright (C) 2023 Free Software Foundation, Inc. 1// Copyright (C) 2023-2024 Free Software Foundation, Inc.
2// 2//
3// This file is part of GNU Emacs. 3// This file is part of GNU Emacs.
4// 4//
diff --git a/exec/loader-armeabi.s b/exec/loader-armeabi.s
index bee81edb326..5601088262c 100644
--- a/exec/loader-armeabi.s
+++ b/exec/loader-armeabi.s
@@ -1,4 +1,4 @@
1@ Copyright (C) 2023 Free Software Foundation, Inc. 1@ Copyright (C) 2023-2024 Free Software Foundation, Inc.
2@ 2@
3@ This file is part of GNU Emacs. 3@ This file is part of GNU Emacs.
4@ 4@
diff --git a/exec/loader-mips64el.s b/exec/loader-mips64el.s
index c340824a6f0..0ff140f9f31 100644
--- a/exec/loader-mips64el.s
+++ b/exec/loader-mips64el.s
@@ -1,4 +1,4 @@
1# Copyright (C) 2023 Free Software Foundation, Inc. 1# Copyright (C) 2023-2024 Free Software Foundation, Inc.
2# 2#
3# This file is part of GNU Emacs. 3# This file is part of GNU Emacs.
4# 4#
diff --git a/exec/loader-mipsel.s b/exec/loader-mipsel.s
index e1ae68af0ca..f1cdcfcf149 100644
--- a/exec/loader-mipsel.s
+++ b/exec/loader-mipsel.s
@@ -1,4 +1,4 @@
1# Copyright (C) 2023 Free Software Foundation, Inc. 1# Copyright (C) 2023-2024 Free Software Foundation, Inc.
2# 2#
3# This file is part of GNU Emacs. 3# This file is part of GNU Emacs.
4# 4#
diff --git a/exec/loader-x86.s b/exec/loader-x86.s
index 6329e7f33b1..216bc88f976 100644
--- a/exec/loader-x86.s
+++ b/exec/loader-x86.s
@@ -1,7 +1,7 @@
1define(`CC', ` 1define(`CC', `
2dnl') 2dnl')
3 3
4CC Copyright (C) 2023 Free Software Foundation, Inc. 4CC Copyright (C) 2023-2024 Free Software Foundation, Inc.
5CC 5CC
6CC This file is part of GNU Emacs. 6CC This file is part of GNU Emacs.
7CC 7CC
diff --git a/exec/loader-x86_64.s b/exec/loader-x86_64.s
index acba609b202..2ef779e4504 100644
--- a/exec/loader-x86_64.s
+++ b/exec/loader-x86_64.s
@@ -1,7 +1,7 @@
1define(`CC', ` 1define(`CC', `
2dnl') 2dnl')
3 3
4CC Copyright (C) 2023 Free Software Foundation, Inc. 4CC Copyright (C) 2023-2024 Free Software Foundation, Inc.
5CC 5CC
6CC This file is part of GNU Emacs. 6CC This file is part of GNU Emacs.
7CC 7CC
diff --git a/exec/mipsel-user.h b/exec/mipsel-user.h
index 9c5a445c9aa..04f4a2a5089 100644
--- a/exec/mipsel-user.h
+++ b/exec/mipsel-user.h
@@ -1,6 +1,6 @@
1/* Program execution for Emacs. 1/* Program execution for Emacs.
2 2
3Copyright (C) 2023 Free Software Foundation, Inc. 3Copyright (C) 2023-2024 Free Software Foundation, Inc.
4 4
5This file is part of GNU Emacs. 5This file is part of GNU Emacs.
6 6
diff --git a/exec/mipsfpu.c b/exec/mipsfpu.c
index f5fa5720804..5fd81fb9237 100644
--- a/exec/mipsfpu.c
+++ b/exec/mipsfpu.c
@@ -1,6 +1,6 @@
1/* Program execution for Emacs. 1/* Program execution for Emacs.
2 2
3Copyright (C) 2023 Free Software Foundation, Inc. 3Copyright (C) 2023-2024 Free Software Foundation, Inc.
4 4
5This file is part of GNU Emacs. 5This file is part of GNU Emacs.
6 6
diff --git a/exec/mipsfpu.h b/exec/mipsfpu.h
index 2315db59e93..1669102942b 100644
--- a/exec/mipsfpu.h
+++ b/exec/mipsfpu.h
@@ -1,6 +1,6 @@
1/* Program execution for Emacs. 1/* Program execution for Emacs.
2 2
3Copyright (C) 2023 Free Software Foundation, Inc. 3Copyright (C) 2023-2024 Free Software Foundation, Inc.
4 4
5This file is part of GNU Emacs. 5This file is part of GNU Emacs.
6 6
diff --git a/exec/test.c b/exec/test.c
index fa2a848837c..7185c958b87 100644
--- a/exec/test.c
+++ b/exec/test.c
@@ -1,6 +1,6 @@
1/* Program execution for Emacs. 1/* Program execution for Emacs.
2 2
3Copyright (C) 2023 Free Software Foundation, Inc. 3Copyright (C) 2023-2024 Free Software Foundation, Inc.
4 4
5This file is part of GNU Emacs. 5This file is part of GNU Emacs.
6 6
diff --git a/exec/trace.c b/exec/trace.c
index ccf498f39fe..8e190c94f79 100644
--- a/exec/trace.c
+++ b/exec/trace.c
@@ -1,6 +1,6 @@
1/* Program execution for Emacs. 1/* Program execution for Emacs.
2 2
3Copyright (C) 2023 Free Software Foundation, Inc. 3Copyright (C) 2023-2024 Free Software Foundation, Inc.
4 4
5This file is part of GNU Emacs. 5This file is part of GNU Emacs.
6 6