diff options
| author | Stefan Monnier | 2023-10-29 14:07:04 -0400 |
|---|---|---|
| committer | Stefan Monnier | 2023-10-29 14:07:04 -0400 |
| commit | 99d4d65cc2cd98537ef58afeace81a11ad2ff6c2 (patch) | |
| tree | f9c81e5cf34afc68978f8ad1f789d776932cfa9e | |
| parent | 67977ae5974e54d34034aa7990cf22dd162c179b (diff) | |
| download | emacs-99d4d65cc2cd98537ef58afeace81a11ad2ff6c2.tar.gz emacs-99d4d65cc2cd98537ef58afeace81a11ad2ff6c2.zip | |
Require `cl-lib` rather than directly some of its subfiles
* test/src/filelock-tests.el:
* lisp/net/tramp-sh.el: Require `cl-lib` rather than `cl-seq` or `cl-macs`.
| -rw-r--r-- | lisp/net/tramp-sh.el | 3 | ||||
| -rw-r--r-- | test/src/filelock-tests.el | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/lisp/net/tramp-sh.el b/lisp/net/tramp-sh.el index ba6dbdf0c39..49acf8395c5 100644 --- a/lisp/net/tramp-sh.el +++ b/lisp/net/tramp-sh.el | |||
| @@ -31,8 +31,7 @@ | |||
| 31 | 31 | ||
| 32 | ;;; Code: | 32 | ;;; Code: |
| 33 | 33 | ||
| 34 | (eval-when-compile (require 'cl-lib)) | 34 | (require 'cl-lib) |
| 35 | (require 'cl-seq) | ||
| 36 | (require 'tramp) | 35 | (require 'tramp) |
| 37 | 36 | ||
| 38 | ;; `dired-*' declarations can be removed, starting with Emacs 29.1. | 37 | ;; `dired-*' declarations can be removed, starting with Emacs 29.1. |
diff --git a/test/src/filelock-tests.el b/test/src/filelock-tests.el index f4376b2a5b0..f4ae7192796 100644 --- a/test/src/filelock-tests.el +++ b/test/src/filelock-tests.el | |||
| @@ -26,7 +26,7 @@ | |||
| 26 | 26 | ||
| 27 | ;;; Code: | 27 | ;;; Code: |
| 28 | 28 | ||
| 29 | (require 'cl-macs) | 29 | (require 'cl-lib) |
| 30 | (require 'ert) | 30 | (require 'ert) |
| 31 | (require 'ert-x) | 31 | (require 'ert-x) |
| 32 | (require 'seq) | 32 | (require 'seq) |