summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2026-03-06Simplifyexternals/el-jobMartin Edström
Prolly no need to divide num-processors by half after all.
2026-03-06Release version 2.7.4Martin Edström
2026-03-06Max 15 processes on Windows to prevent errors Emacs <=30Martin Edström
The total max subprocesses is 32, according to this link: https://github.com/emacs-mirror/emacs/commit/e02466a579a58fceda33ad51d822e39543bc883c So 15 to leave some space for other subprocesses.
2026-03-02StyleMartin Edström
2026-02-28testMartin Edström
2026-02-28Revert "Remove old test"Martin Edström
This reverts commit e44e6acf1bb082233c390786ae1a5721bbcb1f63.
2026-02-28Remove old testMartin Edström
2026-02-28Potential fixMartin Edström
Ref: https://github.com/meedstrom/org-mem/issues/31
2026-02-28StyleMartin Edström
2026-02-22Release version 2.7.3Martin Edström
2026-02-22Fix: Do not force a coding system during :funcall-per-inputMartin Edström
2026-02-19Release version 2.7.2Martin Edström
2026-01-28Allow empty inputsMartin Edström
2026-01-27Inform if Emacs seems unable to create processesMartin Edström
Inspired by https://github.com/meedstrom/org-node/issues/96 Add el-job-ng--supported-p
2026-01-27Prevent el-job-ng-kill from running the sentinel againMartin Edström
Does not matter much since we already handle it in the sentinel, but could feasibly prevent cases of printing a message N-cores times instead of once.
2026-01-27Move codeMartin Edström
The macro needs be defined early for upcoming subroutine el-job-ng--supported-p.
2026-01-27Stop loading el-job-oldMartin Edström
2026-01-27Try to handle sentinel being called with a nil process(?)Martin Edström
2026-01-24Release version 2.7.1Martin Edström
2026-01-24Fix wrong-type-argument listpMartin Edström
2026-01-23Release version 2.7.0Martin Edström
2026-01-23Fix testsMartin Edström
2026-01-23Delete el-job-child.elMartin Edström
2026-01-23Docs commentsMartin Edström
2026-01-23StyleMartin Edström
2026-01-23FixMartin Edström
2026-01-23Allow injecting any valueMartin Edström
2026-01-23RenameMartin Edström
2026-01-23Update CommentaryMartin Edström
2026-01-23Remove unnecessary aliasesMartin Edström
2026-01-23FixesMartin Edström
2026-01-23PolishMartin Edström
2026-01-23Add tests for split-{optimally,evenly}Martin Edström
2026-01-23Update el-job-ng-debug-runMartin Edström
2026-01-23Fix order of items and add a testMartin Edström
2026-01-23Fix internal error, toggle do-bench instead of signalingMartin Edström
2026-01-23Add el-job-parallel-mapcarMartin Edström
2026-01-23Use defclass instead of cl-defstructMartin Edström
Defstruct defines too many functions like el-job-ng--job-stderr that are confusable with el-job-ng-stderr which we also have.
2026-01-22Stop injecting value of temporary-file-directoryMartin Edström
Not strictly necessary. Do less not more.
2026-01-22SimplifyMartin Edström
2026-01-22Pass args to :callback same order as :inputsMartin Edström
See explanation in 4fe6b604eab17d18f290d9d99d3e781725d614c0
2026-01-22SimplifyMartin Edström
2026-01-22PolishMartin Edström
2026-01-22StyleMartin Edström
2026-01-22Expunge debug extensions to own fileMartin Edström
2026-01-22Remove poorly named el-job-ng-jobMartin Edström
An alias was added a few commits ago
2026-01-22More specific assertionsMartin Edström
2026-01-22PolishMartin Edström
2026-01-22Add job id to the debug infoMartin Edström
2026-01-22Stop relying on buffer-local valueMartin Edström
Ran into a case where the process buffer is killed for some reason long before sentinel is called (and yes the sentinel gets called anyway)