branch: externals/el-job
commit 006af3ffd4ebbbf172881f3d6d18236b2b0c13db
Author: Martin Edström <meedstro...@gmail.com>
Commit: Martin Edström <meedstro...@gmail.com>

    DROP SUPPORT Emacs 28
    
    Mystery: in my testing on Emacs 28, subprocesses apparently never
    receive the input from process-send-string, so they do nothing and
    wait forever.
---
 el-job-child.el | 2 --
 el-job.el       | 5 +----
 2 files changed, 1 insertion(+), 6 deletions(-)

diff --git a/el-job-child.el b/el-job-child.el
index b604242188..b59b5e1fda 100644
--- a/el-job-child.el
+++ b/el-job-child.el
@@ -21,8 +21,6 @@
 
 ;;; Code:
 
-(when (= emacs-major-version 28) (require 'subr-x))
-
 (defun el-job-child--zip (meta-list1 meta-list2)
   "Destructively zip two lists into one.
 Like the Dash expression \(-zip-with #\\='nconc list1 list2).
diff --git a/el-job.el b/el-job.el
index c06babf44f..cb637244d8 100644
--- a/el-job.el
+++ b/el-job.el
@@ -20,7 +20,7 @@
 ;; Created:          2024-10-30
 ;; Keywords:         processes
 ;; Package-Version:  2.0.1
-;; Package-Requires: ((emacs "28.1") (compat "30"))
+;; Package-Requires: ((emacs "29.1"))
 
 ;;; Commentary:
 
@@ -36,10 +36,7 @@
 
 ;;; Code:
 
-(when (<= emacs-major-version 28)
-  (require 'subr-x))
 (require 'cl-lib)
-(require 'compat)
 (require 'el-job-child)
 
 (defvar el-job-major-version 2

Reply via email to