diff options
Diffstat (limited to 'embark-consult.el')
| -rw-r--r-- | embark-consult.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/embark-consult.el b/embark-consult.el index 6119127..9faa994 100644 --- a/embark-consult.el +++ b/embark-consult.el @@ -7,7 +7,7 @@ ;; Keywords: convenience ;; Version: 1.2 ;; URL: https://github.com/oantolin/embark -;; Package-Requires: ((emacs "29.1") (compat "30") (embark "1.1") (consult "3.2")) +;; Package-Requires: ((emacs "29.1") (compat "31") (embark "1.1") (consult "3.2")) ;; This program is free software; you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by @@ -158,7 +158,7 @@ candidates do not carry that information." (if (null file) (cl-pushnew buffer non-file-buffers) (insert (file-relative-name file) ":" lineno ":" contents "\n") - (cl-incf count)))) + (incf count)))) count)) :footer (lambda () @@ -259,7 +259,7 @@ category `consult-grep'." (let ((count 0) prop) (while (setq prop (text-property-search-forward 'face 'consult-highlight-match t)) - (cl-incf count) + (incf count) (put-text-property (prop-match-beginning prop) (prop-match-end prop) 'font-lock-face |
