summaryrefslogtreecommitdiff
path: root/app-emacs/pinentry/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2023-11-29 22:58:59 +0000
committerV3n3RiX <venerix@koprulu.sector>2023-11-29 22:58:59 +0000
commite7b6f003e8384cdfc8c0e7603329e969d8806c24 (patch)
tree43f634afff484e1aabb0f8eccbd7c8d109492bfe /app-emacs/pinentry/files
parent70a061c3f38986cf8f04a4c6567114cea348169e (diff)
gentoo auto-resync : 29:11:2023 - 22:58:59
Diffstat (limited to 'app-emacs/pinentry/files')
-rw-r--r--app-emacs/pinentry/files/pinentry-emacs-29.patch32
1 files changed, 0 insertions, 32 deletions
diff --git a/app-emacs/pinentry/files/pinentry-emacs-29.patch b/app-emacs/pinentry/files/pinentry-emacs-29.patch
deleted file mode 100644
index e737a81538aa..000000000000
--- a/app-emacs/pinentry/files/pinentry-emacs-29.patch
+++ /dev/null
@@ -1,32 +0,0 @@
-Fix byte-compile warnings in Emacs 29.
-Drop cl-lib which was needed only for cl-letf.
-
---- a/pinentry.el
-+++ b/pinentry.el
-@@ -49,8 +49,6 @@
-
- ;;; Code:
-
--(eval-when-compile (require 'cl-lib))
--
- (defgroup pinentry nil
- "The Pinentry server"
- :version "25.1"
-@@ -92,7 +90,7 @@
-
- ;; These error codes are defined in libgpg-error/src/err-codes.h.in.
- (defmacro pinentry--error-code (code)
-- (logior (lsh 5 24) code))
-+ (logior (ash 5 24) code))
- (defconst pinentry--error-not-implemented
- (cons (pinentry--error-code 69) "not implemented"))
- (defconst pinentry--error-cancelled
-@@ -174,7 +172,7 @@
- (ignore-errors
- (let (delete-by-moving-to-trash)
- (delete-file server-file)))
-- (cl-letf (((default-file-modes) ?\700))
-+ (with-file-modes ?\700
- (setq pinentry--server-process
- (make-network-process
- :name "pinentry"