diff options
author | Colin Walters <walters@gnu.org> | 2002-01-16 06:33:20 +0000 |
---|---|---|
committer | Colin Walters <walters@gnu.org> | 2002-01-16 06:33:20 +0000 |
commit | 00332656027cf37039ebe0e239c996308941f1cc (patch) | |
tree | 3794859cf175edccca955f99e115d2ebc45833f4 /lisp/ibuf-macs.el | |
parent | 7f551e47f1f757e94d5b9c4a87b2284029267e73 (diff) | |
download | emacs-00332656027cf37039ebe0e239c996308941f1cc.tar.gz |
(toplevel): Require `cl' when compiling.
Diffstat (limited to 'lisp/ibuf-macs.el')
-rw-r--r-- | lisp/ibuf-macs.el | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lisp/ibuf-macs.el b/lisp/ibuf-macs.el index 8d3033acea8..3e026de2a08 100644 --- a/lisp/ibuf-macs.el +++ b/lisp/ibuf-macs.el @@ -1,11 +1,9 @@ ;;; ibuf-macs.el --- macros for ibuffer -;; Copyright (C) 2000, 2001 Free Software Foundation, Inc. +;; Copyright (C) 2000, 2001, 2002 Free Software Foundation, Inc. ;; Author: Colin Walters <walters@verbum.org> ;; Created: 6 Dec 2001 -;; X-RCS: $Id: ibuf-macs.el,v 1.6 2001/12/11 22:47:09 walters Exp $ -;; URL: http://cvs.verbum.org/ibuffer ;; Keywords: buffer, convenience ;; This file is not currently part of GNU Emacs. @@ -27,6 +25,9 @@ ;;; Code: +(eval-when-compile + (require 'cl)) + ;; From Paul Graham's "ANSI Common Lisp", adapted for Emacs Lisp here. (defmacro ibuffer-aif (test true-body &rest false-body) "Evaluate TRUE-BODY or FALSE-BODY depending on value of TEST. |