]> git.eshelyaron.com Git - emacs.git/commitdiff
Simply require 'cl (silences spurious warnings).
authorGlenn Morris <rgm@gnu.org>
Wed, 16 Jul 2008 02:50:00 +0000 (02:50 +0000)
committerGlenn Morris <rgm@gnu.org>
Wed, 16 Jul 2008 02:50:00 +0000 (02:50 +0000)
(cl-compile-time-init): Remove function.

lisp/emacs-lisp/cl-macs.el

index 121bd5eea3b9c60568d257b40e6bf27e5198978b..9ca675f08c4ad10c3bd4042b70f5f744fd890bd5 100644 (file)
@@ -43,9 +43,7 @@
 
 ;;; Code:
 
-(or (memq 'cl-19 features)
-    (error "Tried to load `cl-macs' before `cl'!"))
-
+(require 'cl)
 
 (defmacro cl-pop2 (place)
   (list 'prog1 (list 'car (list 'cdr place))
 
 (defvar cl-old-bc-file-form nil)
 
-;;;###autoload
-(defun cl-compile-time-init ()
-  (run-hooks 'cl-hack-bytecomp-hook))
-
-
 ;;; Some predicates for analyzing Lisp forms.  These are used by various
 ;;; macro expanders to optimize the results in certain common cases.