diff options
| author | Vasilij Schneidermann <v.schneidermann@gmail.com> | 2017-02-14 23:36:27 +0100 |
|---|---|---|
| committer | Eivind Fonn <evfonn@gmail.com> | 2017-02-15 13:07:33 +0100 |
| commit | 9e166de9a2faafeafaa22888d4e787bc0c36e86a (patch) | |
| tree | c9f0632f16db25a68a2a5f4135ab6c5879366e38 /evil-jumps.el | |
| parent | 78750cd5e729e3d9545d5d31cd04ffa0599c4acf (diff) | |
Require cl-lib instead of cl
Diffstat (limited to 'evil-jumps.el')
| -rw-r--r-- | evil-jumps.el | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/evil-jumps.el b/evil-jumps.el index 3c194b4..e3734e4 100644 --- a/evil-jumps.el +++ b/evil-jumps.el @@ -24,8 +24,7 @@ ;; You should have received a copy of the GNU General Public License ;; along with Evil. If not, see <http://www.gnu.org/licenses/>. -(eval-when-compile (require 'cl)) - +(require 'cl-lib) (require 'evil-core) (require 'evil-states) @@ -189,7 +188,7 @@ :entries (let* ((jumps (evil--jumps-savehist-sync)) (count 0)) (cl-loop for jump in jumps - collect `(nil [,(number-to-string (incf count)) + collect `(nil [,(number-to-string (cl-incf count)) ,(number-to-string (car jump)) (,(cadr jump))]))) :select-action #'evil--show-jumps-select-action)) |
