Skip to content

Commit

Permalink
Use one require and eval-when-compile per line
Browse files Browse the repository at this point in the history
  • Loading branch information
minad committed Aug 16, 2023
1 parent 7290b02 commit c496c4e
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions hl-todo.el
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,8 @@
;;; Code:

(require 'compat)
(eval-when-compile
(require 'subr-x)
(require 'cl-lib))
(eval-when-compile (require 'subr-x))
(eval-when-compile (require 'cl-lib))

(defvar grep-find-template)
(declare-function grep-read-files "grep" (regexp))
Expand Down

0 comments on commit c496c4e

Please sign in to comment.