diff options
author | Glenn Morris <rgm@gnu.org> | 2008-07-16 02:50:40 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2008-07-16 02:50:40 +0000 |
commit | e3d954975bd3b654bb5b577ea96d0b057d27abed (patch) | |
tree | 92dcbf4afca676dec2050d9f9a6845ede1f06ad4 /lisp/emacs-lisp/cl-seq.el | |
parent | 56565c745b778d21d0cebe75d765dce4fb2a3cd8 (diff) | |
download | emacs-e3d954975bd3b654bb5b577ea96d0b057d27abed.tar.gz |
Simply require 'cl (silences spurious warnings).
Diffstat (limited to 'lisp/emacs-lisp/cl-seq.el')
-rw-r--r-- | lisp/emacs-lisp/cl-seq.el | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/lisp/emacs-lisp/cl-seq.el b/lisp/emacs-lisp/cl-seq.el index 0b156fc01c5..2f5ff258bca 100644 --- a/lisp/emacs-lisp/cl-seq.el +++ b/lisp/emacs-lisp/cl-seq.el @@ -1,7 +1,7 @@ ;;; cl-seq.el --- Common Lisp features, part 3 -;; Copyright (C) 1993, 2001, 2002, 2003, 2004, 2005, -;; 2006, 2007, 2008 Free Software Foundation, Inc. +;; Copyright (C) 1993, 2001, 2002, 2003, 2004, 2005, 2006, 2007, +;; 2008 Free Software Foundation, Inc. ;; Author: Dave Gillespie <daveg@synaptics.com> ;; Version: 2.02 @@ -31,8 +31,6 @@ ;; This package was written by Dave Gillespie; it is a complete ;; rewrite of Cesar Quiroz's original cl.el package of December 1986. ;; -;; This package works with Emacs 18, Emacs 19, and Lucid Emacs 19. -;; ;; Bug reports, comments, and suggestions are welcome! ;; This file contains the Common Lisp sequence and list functions @@ -43,9 +41,7 @@ ;;; Code: -(or (memq 'cl-19 features) - (error "Tried to load `cl-seq' before `cl'!")) - +(require 'cl) ;;; Keyword parsing. This is special-cased here so that we can compile ;;; this file independent from cl-macs. |