lukelee pushed a commit to branch master
in repository elpa.

commit 9f7ff710bcb6a0dd2927abc64244db45425dfd3d
Author: Stefan Monnier <monn...@iro.umontreal.ca>
Date:   Tue Jul 10 07:51:54 2012 -0400

    Reduce use of (require 'cl). * admin/bzrmerge.el: Use cl-lib. * 
leim/quail/hangul.el: Don't require CL. * leim/quail/ipa.el: Use cl-lib. * 
vc/smerge-mode.el, vc/pcvs.el, vc/pcvs-util.el, vc/pcvs-info.el: * 
vc/diff-mode.el, vc/cvs-status.el, uniquify.el, scroll-bar.el: * register.el, 
progmodes/sh-script.el, net/gnutls.el, net/dbus.el: * msb.el, mpc.el, 
minibuffer.el, international/ucs-normalize.el: * international/quail.el, 
info-xref.el, imenu.el, image-mode.el: * font-lock.el, fileset [...]
---
 lisp/emulation/crisp.el |    4 +---
 1 files changed, 1 insertions(+), 3 deletions(-)

diff --git a/lisp/emulation/crisp.el b/lisp/emulation/crisp.el
index cfb8ed0..d29736d 100644
--- a/lisp/emulation/crisp.el
+++ b/lisp/emulation/crisp.el
@@ -54,8 +54,6 @@
 
 ;;; Code:
 
-(eval-when-compile (require 'cl))
-
 ;; local variables
 
 (defgroup crisp nil
@@ -361,7 +359,7 @@ if ARG is omitted or nil."
   (when crisp-mode
     ;; Make menu entries show M-u or f14 in preference to C-x u.
     (put 'undo :advertised-binding
-         (list* [?\M-u] [f14] (get 'undo :advertised-binding)))
+         `([?\M-u] [f14] ,@(get 'undo :advertised-binding)))
     ;; Force transient-mark-mode, so that the marking routines work as
     ;; expected.  If the user turns off transient mark mode, most
     ;; things will still work fine except the crisp-(copy|kill)

Reply via email to