diff options
author | smihica <smihica@gmail.com> | 2013-09-12 06:54:30 +0900 |
---|---|---|
committer | smihica <smihica@gmail.com> | 2013-09-12 06:54:30 +0900 |
commit | fb0077661fdb2536452a9e6d947be801cc39c63a (patch) | |
tree | a2cbba974f7b5f4cd407f35e28857557dab9229b /src/init.el | |
parent | 241dd10f305016bacac7b61190ddb0c102eba64d (diff) | |
download | emmet-mode-fb0077661fdb2536452a9e6d947be801cc39c63a.tar.lz emmet-mode-fb0077661fdb2536452a9e6d947be801cc39c63a.tar.xz emmet-mode-fb0077661fdb2536452a9e6d947be801cc39c63a.zip |
Fixed a bug that a cl-function every is not working when the cl-package has not loaded yet.
Diffstat (limited to 'src/init.el')
-rw-r--r-- | src/init.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/init.el b/src/init.el index 3fece4b..8a0c80c 100644 --- a/src/init.el +++ b/src/init.el @@ -2,9 +2,9 @@ ;; ;;; Code: -(defconst emmet-mode:version "1.0.3") +(defconst emmet-mode:version "1.0.4") -(eval-when-compile (require 'cl)) +(require 'cl) (defmacro emmet-defparameter (symbol &optional initvalue docstring) `(progn |