[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[nongnu] elpa/hyperdrive e214d0b6c6 4/8: Tidy: (hyperdrive--clean-buffer
From: |
ELPA Syncer |
Subject: |
[nongnu] elpa/hyperdrive e214d0b6c6 4/8: Tidy: (hyperdrive--clean-buffer) Compiler warning |
Date: |
Wed, 27 Sep 2023 19:00:41 -0400 (EDT) |
branch: elpa/hyperdrive
commit e214d0b6c6591e6aa1dc64c999a2fba188c425c5
Author: Adam Porter <adam@alphapapa.net>
Commit: Adam Porter <adam@alphapapa.net>
Tidy: (hyperdrive--clean-buffer) Compiler warning
---
hyperdrive-lib.el | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/hyperdrive-lib.el b/hyperdrive-lib.el
index eb153fd7d7..5dcb95aaed 100644
--- a/hyperdrive-lib.el
+++ b/hyperdrive-lib.el
@@ -1400,7 +1400,10 @@ When PATH is nil or blank, return \"/\"."
When BUFFER is nil, act on current buffer."
(with-current-buffer (or buffer (current-buffer))
(if (>= emacs-major-version 29)
- (kill-all-local-variables t)
+ (with-suppressed-warnings ((callargs kill-all-local-variables))
+ (kill-all-local-variables t))
+ ;; NOTE: On Emacs <29, this function will not kill permanent-local
+ ;; variables. We're not sure if that will be a problem.
(kill-all-local-variables))
(let ((inhibit-read-only t))
(delete-all-overlays)
- [nongnu] elpa/hyperdrive updated (9dacf1f39b -> 38a4f74ab6), ELPA Syncer, 2023/09/27
- [nongnu] elpa/hyperdrive 72d124eeeb 2/8: Merge branch 'wip/ci-nix-caching', ELPA Syncer, 2023/09/27
- [nongnu] elpa/hyperdrive 627edace7b 6/8: Tidy: Compiler warning about use-dialog-box-p, ELPA Syncer, 2023/09/27
- [nongnu] elpa/hyperdrive df2387892d 3/8: Meta: Acknowledge Steve Purcell and Akira Komamura, ELPA Syncer, 2023/09/27
- [nongnu] elpa/hyperdrive e214d0b6c6 4/8: Tidy: (hyperdrive--clean-buffer) Compiler warning,
ELPA Syncer <=
- [nongnu] elpa/hyperdrive 8c0bec7223 5/8: Tidy: Compiler warning, ELPA Syncer, 2023/09/27
- [nongnu] elpa/hyperdrive be025758d1 7/8: Tidy: Compiler warning, ELPA Syncer, 2023/09/27
- [nongnu] elpa/hyperdrive 38a4f74ab6 8/8: Meta: Add build status badge, ELPA Syncer, 2023/09/27
- [nongnu] elpa/hyperdrive ceeb24d265 1/8: Meta: Enable Nix caching in CI builds, ELPA Syncer, 2023/09/27