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:
parent
5903fe4287
commit
f7494618ff
1 changed files with 3 additions and 1 deletions
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue