diff options
| author | Stefan Merten | 2012-06-02 11:43:51 +0200 |
|---|---|---|
| committer | Stefan Merten | 2012-06-02 11:43:51 +0200 |
| commit | 42152ee47136b695a78289735d8e8fc7caa08e94 (patch) | |
| tree | 2bd3fac073795a7e6e475029c746abcaf1d68697 | |
| parent | a282161184c51eba3381b257f2fe2939b79cd576 (diff) | |
| download | emacs-42152ee47136b695a78289735d8e8fc7caa08e94.tar.gz emacs-42152ee47136b695a78289735d8e8fc7caa08e94.zip | |
Always require `cl'.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/textmodes/rst.el | 7 |
2 files changed, 8 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index b19883beb28..8253170b384 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2012-06-02 Stefan Merten <smerten@oekonux.de> | ||
| 2 | |||
| 3 | * textmodes/rst.el: Always require `cl'. | ||
| 4 | |||
| 1 | 2012-06-02 Chong Yidong <cyd@gnu.org> | 5 | 2012-06-02 Chong Yidong <cyd@gnu.org> |
| 2 | 6 | ||
| 3 | * image.el (imagemagick-enabled-types): Rename from | 7 | * 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 @@ | |||
| 103 | 103 | ||
| 104 | ;;; Code: | 104 | ;;; Code: |
| 105 | 105 | ||
| 106 | (eval-when-compile | 106 | ;; FIXME: Use `eval-when-compile' when calls to `some', `position', `signum' |
| 107 | (require 'cl)) | 107 | ;; and `position-if' are replaced. |
| 108 | (require 'cl) | ||
| 108 | 109 | ||
| 109 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | 110 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
| 110 | ;; Versions | 111 | ;; Versions |
| @@ -122,7 +123,7 @@ and before TAIL-RE and DELIM-RE in VAR or DEFAULT for no match." | |||
| 122 | ;; Use CVSHeader to really get information from CVS and not other version | 123 | ;; Use CVSHeader to really get information from CVS and not other version |
| 123 | ;; control systems. | 124 | ;; control systems. |
| 124 | (defconst rst-cvs-header | 125 | (defconst rst-cvs-header |
| 125 | "$CVSHeader: sm/rst_el/rst.el,v 1.257.2.9 2012-05-29 19:53:00 stefan Exp $") | 126 | "$CVSHeader: sm/rst_el/rst.el,v 1.257.2.10 2012-06-02 09:38:40 stefan Exp $") |
| 126 | (defconst rst-cvs-rev | 127 | (defconst rst-cvs-rev |
| 127 | (rst-extract-version "\\$" "CVSHeader: \\S + " "[0-9]+\\(?:\\.[0-9]+\\)+" | 128 | (rst-extract-version "\\$" "CVSHeader: \\S + " "[0-9]+\\(?:\\.[0-9]+\\)+" |
| 128 | " .*" rst-cvs-header "0.0") | 129 | " .*" rst-cvs-header "0.0") |