Use cl-lib instead of cl-macs

Fixes #19
master
Bozhidar Batsov 11 years ago committed by Oleh Krehel
parent c32b91fa32
commit 6ff26f5377
  1. 5
      .dir-locals.el
  2. 1
      avy-jump.el
  3. 2
      avy.el

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

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

@ -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."

Loading…
Cancel
Save