]> code.delx.au - gnu-emacs/commitdiff
Require CL also when compiling.
authorStefan Monnier <monnier@iro.umontreal.ca>
Fri, 29 Jul 2005 20:51:34 +0000 (20:51 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Fri, 29 Jul 2005 20:51:34 +0000 (20:51 +0000)
lisp/emacs-lisp/cl-extra.el

index 107f8b1b2236c88fd49f676a03cdcaf4b0c380e6..16e777ed2b54ad0e0517d258ffd40a4c1af8486c 100644 (file)
@@ -1,6 +1,6 @@
 ;;; cl-extra.el --- Common Lisp features, part 2 -*-byte-compile-dynamic: t;-*-
 
-;; Copyright (C) 1993,2000,2003  Free Software Foundation, Inc.
+;; Copyright (C) 1993, 2000, 2003, 2005  Free Software Foundation, Inc.
 
 ;; Author: Dave Gillespie <daveg@synaptics.com>
 ;; Keywords: extensions
@@ -38,9 +38,7 @@
 
 ;;; Code:
 
-(or (memq 'cl-19 features)
-    (error "Tried to load `cl-extra' before `cl'!"))
-
+(require 'cl)
 
 ;;; Type coercion.
 
@@ -763,5 +761,5 @@ This also does some trivial optimizations to make the form prettier."
 
 (run-hooks 'cl-extra-load-hook)
 
-;;; arch-tag: bcd03437-0871-43fb-a8f1-ad0e0b5427ed
+;; arch-tag: bcd03437-0871-43fb-a8f1-ad0e0b5427ed
 ;;; cl-extra.el ends here