diff options
author | Stefan Merten <smerten@oekonux.de> | 2012-06-02 11:43:51 +0200 |
---|---|---|
committer | Stefan Merten <smerten@oekonux.de> | 2012-06-02 11:43:51 +0200 |
commit | 42152ee47136b695a78289735d8e8fc7caa08e94 (patch) | |
tree | 2bd3fac073795a7e6e475029c746abcaf1d68697 /lisp/textmodes | |
parent | a282161184c51eba3381b257f2fe2939b79cd576 (diff) | |
download | emacs-42152ee47136b695a78289735d8e8fc7caa08e94.tar.gz |
Always require `cl'.
Diffstat (limited to 'lisp/textmodes')
-rw-r--r-- | lisp/textmodes/rst.el | 7 |
1 files changed, 4 insertions, 3 deletions
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") |