emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/compat a4036f9b1b 01/84: Prepare Emacs 29.1 compatibili


From: ELPA Syncer
Subject: [elpa] externals/compat a4036f9b1b 01/84: Prepare Emacs 29.1 compatibility
Date: Tue, 3 Jan 2023 08:57:30 -0500 (EST)

branch: externals/compat
commit a4036f9b1bad600678b4d3f41efe8a95ef202809
Author: Philip Kaludercic <philipk@posteo.net>
Commit: Philip Kaludercic <philipk@posteo.net>

    Prepare Emacs 29.1 compatibility
---
 Makefile       |  1 +
 compat-29.1.el | 36 ++++++++++++++++++++++++++++++++++++
 compat.el      |  1 +
 3 files changed, 38 insertions(+)

diff --git a/Makefile b/Makefile
index b9a6e8b4b6..f0fe9ec7dd 100644
--- a/Makefile
+++ b/Makefile
@@ -10,6 +10,7 @@ BYTEC = compat-help.elc \
        compat-26.1.elc \
        compat-27.1.elc \
        compat-28.1.elc \
+       compat-29.1.elc \
        compat.elc
 
 all: compile test
diff --git a/compat-29.1.el b/compat-29.1.el
new file mode 100644
index 0000000000..d7eecce9be
--- /dev/null
+++ b/compat-29.1.el
@@ -0,0 +1,36 @@
+;;; compat-29.1.el --- Compatibility Layer for Emacs 29.1  -*- 
lexical-binding: t; -*-
+
+;; Copyright (C) 2021 Free Software Foundation, Inc.
+
+;; Author: Philip Kaludercic <philipk@posteo.net>
+;; Keywords: lisp
+
+;; 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 <https://www.gnu.org/licenses/>.
+
+;;; Commentary:
+
+;; Find here the functionality added in Emacs 29.1, needed by older
+;; versions.
+;;
+;; Do NOT load this library manually.  Instead require `compat'.
+
+;;; Code:
+
+(eval-when-compile (require 'compat-macs))
+(declare-function compat-maxargs-/= "compat" (func n))
+
+
+
+(provide 'compat-29.1)
+;;; compat-29.1.el ends here
diff --git a/compat.el b/compat.el
index d3f2e50a71..52712f2502 100644
--- a/compat.el
+++ b/compat.el
@@ -146,6 +146,7 @@ advice."
 (require 'compat-26.1)
 (require 'compat-27.1)
 (require 'compat-28.1)
+(require 'compat-29.1)
 
 ;;;; Etcetera
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]