diff options
author | Glenn Morris <rgm@gnu.org> | 2008-07-16 02:50:00 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2008-07-16 02:50:00 +0000 |
commit | 56565c745b778d21d0cebe75d765dce4fb2a3cd8 (patch) | |
tree | 3ae7c546b5ec387b4e7bcb8bb70fe6c82cc4ad36 /lisp/emacs-lisp | |
parent | 7467c796a1665599f9f264f08989e7838400e976 (diff) | |
download | emacs-56565c745b778d21d0cebe75d765dce4fb2a3cd8.tar.gz |
Simply require 'cl (silences spurious warnings).
(cl-compile-time-init): Remove function.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/cl-macs.el | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/lisp/emacs-lisp/cl-macs.el b/lisp/emacs-lisp/cl-macs.el index 121bd5eea3b..9ca675f08c4 100644 --- a/lisp/emacs-lisp/cl-macs.el +++ b/lisp/emacs-lisp/cl-macs.el @@ -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)) @@ -73,11 +71,6 @@ (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. |