fit(emacs/lean-input.el): fix loading cl.el at runtime

This package uses only cl.el macro(lexical-let). So it is enough to
load cl.el at compile time.
This commit is contained in:
Syohei YOSHIDA 2016-01-13 17:59:33 +09:00 committed by Soonho Kong
parent 5903fe4287
commit f7494618ff

View file

@ -22,7 +22,9 @@
;;; Code:
(require 'quail)
(require 'cl)
(eval-when-compile
(require 'cl))
;; Quail is quite stateful, so be careful when editing this code. Note
;; that with-temp-buffer is used below whenever buffer-local state is
;; modified.