Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Emacs 28.2 to CI builds and fix newly introduced warnings #2905

Merged
merged 1 commit into from
Jun 18, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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