From: Stefan Merten Date: Sat, 2 Jun 2012 09:43:51 +0000 (+0200) Subject: Always require `cl'. X-Git-Tag: emacs-24.2.90~471^2~6^2~22 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=42152ee47136b695a78289735d8e8fc7caa08e94;p=emacs.git Always require `cl'. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index b19883beb28..8253170b384 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2012-06-02 Stefan Merten + + * textmodes/rst.el: Always require `cl'. + 2012-06-02 Chong Yidong * image.el (imagemagick-enabled-types): Rename from diff --git a/lisp/textmodes/rst.el b/lisp/textmodes/rst.el index e31ab4a974b..52c97ff8789 100644 --- a/lisp/textmodes/rst.el +++ b/lisp/textmodes/rst.el @@ -103,8 +103,9 @@ ;;; Code: -(eval-when-compile - (require 'cl)) +;; FIXME: Use `eval-when-compile' when calls to `some', `position', `signum' +;; and `position-if' are replaced. +(require 'cl) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; Versions @@ -122,7 +123,7 @@ and before TAIL-RE and DELIM-RE in VAR or DEFAULT for no match." ;; Use CVSHeader to really get information from CVS and not other version ;; control systems. (defconst rst-cvs-header - "$CVSHeader: sm/rst_el/rst.el,v 1.257.2.9 2012-05-29 19:53:00 stefan Exp $") + "$CVSHeader: sm/rst_el/rst.el,v 1.257.2.10 2012-06-02 09:38:40 stefan Exp $") (defconst rst-cvs-rev (rst-extract-version "\\$" "CVSHeader: \\S + " "[0-9]+\\(?:\\.[0-9]+\\)+" " .*" rst-cvs-header "0.0")