Use cl-lib instead of cl-macs

Fixes #19
This commit is contained in:
Bozhidar Batsov 2015-05-08 23:10:44 +03:00 committed by Oleh Krehel
parent c32b91fa32
commit 6ff26f5377
3 changed files with 27 additions and 21 deletions

5
.dir-locals.el Normal file
View File

@ -0,0 +1,5 @@
;;; Directory Local Variables
;;; For more information see (info "(emacs) Directory Variables")
((emacs-lisp-mode
(indent-tabs-mode . nil)))

View File

@ -29,6 +29,7 @@
;;; Code:
;;* Requires
(require 'cl-lib)
(require 'avy)
;;* Customization

2
avy.el
View File

@ -42,7 +42,7 @@
;; headache.
;;; Code:
(require 'cl-macs)
(require 'cl-lib)
(defmacro avy-multipop (lst n)
"Remove LST's first N elements and return them."