Skip to content

Commit

Permalink
Add Emacs 28.2 to CI builds and fix newly introduced warnings (dimitr…
Browse files Browse the repository at this point in the history
…i#2905)

Currently, there are no builds for Emacs 28.

Emacs 28 seems have introduced warnings about the line length in code
documentation. These warnings have been fixed as well.
  • Loading branch information
stephan-cr authored and takaxp committed Jun 17, 2024
1 parent 341f4ab commit ae62dca
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
1 change: 1 addition & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ jobs:
- 25.3
- 26.3
- 27.2
- 28.2
- snapshot
env:
EMACS_VERSION: ${{ matrix.emacs_version }}
Expand Down
3 changes: 2 additions & 1 deletion el-get-check.el
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,8 @@ Current possibe elements are:
1))))

(defun el-get-check-recipe-batch ()
"emacs -Q -batch -f el-get-check-recipe-batch [-W<:level>] [-Wno-<warning>...] *.rcp
"emacs -Q -batch -f el-get-check-recipe-batch [-W<:level>]
[-Wno-<warning>...] *.rcp
<:level> can be any valid warning level, see `warning-levels'.
See `el-get-check-suppressed-warnings' for possible <warning> values."
Expand Down
3 changes: 2 additions & 1 deletion el-get-status.el
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,8 @@ REMOVED are added and removed properties, respectively."
(defun el-get-merge-properties-into-status (package-or-source
operation
&rest keys)
"Merge updatable properties for package into package status alist (or status file).
"Merge updatable properties for package into package status
alist (or status file).
The first argument is either a package source or a package name,
in which case the source will be read using
Expand Down
6 changes: 4 additions & 2 deletions el-get.el
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,8 @@
"List of packages to install next, used when dealing with dependencies.")

(defun el-get-installation-failed (package signal-data)
"Run all the failure hooks for PACKAGE and `signal' the car and cdr of SIGNAL-DATA."
"Run all the failure hooks for PACKAGE and `signal' the car and
cdr of SIGNAL-DATA."
(run-hook-with-args 'el-get-post-error-hooks package signal-data)
(signal (car signal-data) (cdr signal-data)))

Expand Down Expand Up @@ -336,7 +337,8 @@ which defaults to the first element in `el-get-recipe-path'."
(eval form el-get-eval-lexical)))))

(defun el-get-lazy-run-package-support (form fname package)
"Like `el-get-run-package-support', but using `eval-after-load' to wait until PACKAGE is loaded."
"Like `el-get-run-package-support', but using `eval-after-load'
to wait until PACKAGE is loaded."
(el-get-eval-after-load package
`(el-get-run-package-support ',form ',fname ',package)))

Expand Down

0 comments on commit ae62dca

Please sign in to comment.