Explorar el Código

Depend on cl-lib, not cl-macs

In Emacs 24.1 and 24.2, cl-macs does not have a "provide" form, so it cannot be successfully `require`d. In any case, that file is an implementation detail, and client code should really just use `cl-lib`. This commit makes that change, and declares a package dependency on `cl-lib` so that we can rely on having sufficiently fixed `cl-*` functions/macros to hand.
Steve Purcell hace 9 años
padre
commit
47d41a5c82
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      ido-completing-read+.el

+ 2 - 2
ido-completing-read+.el

@@ -6,7 +6,7 @@
 ;; Author: Ryan Thompson
 ;; Created: Sat Apr  4 13:41:20 2015 (-0700)
 ;; Version: 3.7
-;; Package-Requires: ((emacs "24.1"))
+;; Package-Requires: ((emacs "24.1") (cl-lib "0.5"))
 ;; URL: https://github.com/DarwinAwardWinner/ido-ubiquitous
 ;; Keywords: ido, completion, convenience
 
@@ -48,7 +48,7 @@ Note that when you update ido-completing-read+, this variable may
 not be updated until you restart Emacs.")
 
 (require 'ido)
-(require 'cl-macs)
+(require 'cl-lib)
 
 ;;; Debug messages