]> git.eshelyaron.com Git - emacs.git/commitdiff
Remove semantic patch for adjusting `XSAVE_*`
authorStefan Kangas <stefankangas@gmail.com>
Thu, 4 Jan 2024 01:41:22 +0000 (02:41 +0100)
committerEshel Yaron <me@eshelyaron.com>
Thu, 4 Jan 2024 21:16:02 +0000 (22:16 +0100)
* admin/coccinelle/xsave.cocci: Delete file.  The corresponding macros
were removed in 4139c98eb5f 2018-06-14 "Remove Lisp_Misc_Save_Value".

(cherry picked from commit 310ed338c195c755b11e0c62bde9629797b644c8)

admin/coccinelle/xsave.cocci [deleted file]

diff --git a/admin/coccinelle/xsave.cocci b/admin/coccinelle/xsave.cocci
deleted file mode 100644 (file)
index 5172bb5..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-// Adjust users of XSAVE_POINTER and XSAVE_INTEGER.
-@@
-expression E;
-@@
-(
-- XSAVE_POINTER (E)
-+ XSAVE_POINTER (E, 0)
-|
-- XSAVE_INTEGER (E)
-+ XSAVE_INTEGER (E, 1)
-)