branch: externals/el-job
commit 154d09d17275f467eaf3edfff45f3df5df193a31
Author: Martin Edström <[email protected]>
Commit: Martin Edström <[email protected]>
Bump copyright
---
el-job-child.el | 2 +-
el-job-test.el | 2 +-
el-job.el | 15 +++++++--------
3 files changed, 9 insertions(+), 10 deletions(-)
diff --git a/el-job-child.el b/el-job-child.el
index 29a8a3e8f6..6d8d04a1b9 100644
--- a/el-job-child.el
+++ b/el-job-child.el
@@ -1,6 +1,6 @@
;;; el-job-child.el --- Worker code for children -*- lexical-binding: t; -*-
-;; Copyright (C) 2024 Martin Edström
+;; Copyright (C) 2024-2025 Martin Edström
;; 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
diff --git a/el-job-test.el b/el-job-test.el
index 79cb3c6947..406d38056e 100644
--- a/el-job-test.el
+++ b/el-job-test.el
@@ -1,6 +1,6 @@
;;; el-job-test.el --- Test suite -*- lexical-binding: t; -*-
-;; Copyright (C) 2024 Martin Edström
+;; Copyright (C) 2024-2025 Martin Edström
;; 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
diff --git a/el-job.el b/el-job.el
index 04621256cb..30e0398a0b 100644
--- a/el-job.el
+++ b/el-job.el
@@ -1,6 +1,6 @@
-;;; el-job.el --- Call a function using all CPU cores -*- lexical-binding: t;
-*-
+;;; el-job.el --- Contrived way to call a function using all CPU cores -*-
lexical-binding: t; -*-
-;; Copyright (C) 2024 Martin Edström
+;; Copyright (C) 2024-2025 Martin Edström
;;
;; 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
@@ -16,14 +16,11 @@
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
;; Author: Martin Edström <[email protected]>
-;; Created: 2024-10-30
;; URL: https://github.com/meedstrom/el-job
+;; Created: 2024-10-30
;; Keywords: processes
;; Package-Requires: ((emacs "28.1") (compat "30"))
-;; NOTE: Looking for Package-Version?
-;; Consult your package manager, or the Git tag.
-
;;; Commentary:
;; Imagine you have a function you'd like to run on a long list of inputs. You
@@ -42,9 +39,11 @@
(require 'compat)
(require 'el-job-child)
-(defvar el-job-major-version 1)
+(defvar el-job-major-version 1
+ "Number incremented for breaking changes.")
-;;; Subroutines:
+
+;;; Subroutines
(defvar el-job--debug-level 0
"Increase this to 1 or 2 to see more debug messages.")