# HG changeset patch # User Stefan Monnier # Date 1122670294 0 # Node ID eb2cbda455c613f0096cc72ee589588fc9ed6983 # Parent d8a052666f20c14a61f5f952b6571709f524530b Require CL also when compiling. diff -r d8a052666f20 -r eb2cbda455c6 lisp/emacs-lisp/cl-extra.el --- a/lisp/emacs-lisp/cl-extra.el Fri Jul 29 20:16:51 2005 +0000 +++ b/lisp/emacs-lisp/cl-extra.el Fri Jul 29 20:51:34 2005 +0000 @@ -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 ;; 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 @@ (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