aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/emulation
diff options
context:
space:
mode:
authorStefan Monnier2012-07-10 07:51:54 -0400
committerStefan Monnier2012-07-10 07:51:54 -0400
commitf58e0fd503567288bb30e243595acaa589034929 (patch)
treee40cb0a5c087c0af4bdd41948d655358b0fcd56e /lisp/emulation
parentdfa96edd13d1db4a90fa0977d06b6bdeab2f642e (diff)
downloademacs-f58e0fd503567288bb30e243595acaa589034929.tar.gz
emacs-f58e0fd503567288bb30e243595acaa589034929.zip
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, filesets.el, edmacro.el, doc-view.el, bookmark.el: * battery.el, avoid.el, abbrev.el: Use cl-lib. * vc/pcvs-parse.el, vc/pcvs-defs.el, vc/log-view.el, vc/log-edit.el: * vc/diff.el, simple.el, pcomplete.el, lpr.el, comint.el, loadhist.el: * jit-lock.el, international/iso-ascii.el, info.el, frame.el, bs.el: * emulation/crisp.el, electric.el, dired.el, cus-dep.el, composite.el: * calculator.el, autorevert.el, apropos.el: Don't require CL. * emacs-bytecomp.el (byte-recompile-directory, display-call-tree) (byte-compile-unfold-bcf, byte-compile-check-variable): * emacs-byte-opt.el (byte-compile-trueconstp) (byte-compile-nilconstp): * emacs-autoload.el (make-autoload): Use pcase. * face-remap.el (text-scale-adjust): Simplify pcase patterns.
Diffstat (limited to 'lisp/emulation')
-rw-r--r--lisp/emulation/crisp.el4
1 files changed, 1 insertions, 3 deletions
diff --git a/lisp/emulation/crisp.el b/lisp/emulation/crisp.el
index cfb8ed07595..d29736d6860 100644
--- a/lisp/emulation/crisp.el
+++ b/lisp/emulation/crisp.el
@@ -54,8 +54,6 @@
54 54
55;;; Code: 55;;; Code:
56 56
57(eval-when-compile (require 'cl))
58
59;; local variables 57;; local variables
60 58
61(defgroup crisp nil 59(defgroup crisp nil
@@ -361,7 +359,7 @@ if ARG is omitted or nil."
361 (when crisp-mode 359 (when crisp-mode
362 ;; Make menu entries show M-u or f14 in preference to C-x u. 360 ;; Make menu entries show M-u or f14 in preference to C-x u.
363 (put 'undo :advertised-binding 361 (put 'undo :advertised-binding
364 (list* [?\M-u] [f14] (get 'undo :advertised-binding))) 362 `([?\M-u] [f14] ,@(get 'undo :advertised-binding)))
365 ;; Force transient-mark-mode, so that the marking routines work as 363 ;; Force transient-mark-mode, so that the marking routines work as
366 ;; expected. If the user turns off transient mark mode, most 364 ;; expected. If the user turns off transient mark mode, most
367 ;; things will still work fine except the crisp-(copy|kill) 365 ;; things will still work fine except the crisp-(copy|kill)