aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorsmihica <smihica@gmail.com>2013-09-12 06:54:30 +0900
committersmihica <smihica@gmail.com>2013-09-12 06:54:30 +0900
commitfb0077661fdb2536452a9e6d947be801cc39c63a (patch)
treea2cbba974f7b5f4cd407f35e28857557dab9229b /src
parent241dd10f305016bacac7b61190ddb0c102eba64d (diff)
downloademmet-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')
-rw-r--r--src/comments.el2
-rw-r--r--src/init.el4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/comments.el b/src/comments.el
index fec9d65..638e64e 100644
--- a/src/comments.el
+++ b/src/comments.el
@@ -3,7 +3,7 @@
;; Copyright (C) 2013- Shin Aoyama
;; Copyright (C) 2009-2012 Chris Done
-;; Version: 1.0.3
+;; Version: 1.0.4
;; Author: Shin Aoyama <smihica@gmail.com>
;; URL: https://github.com/smihica/emmet
;; Last-Updated: 2013-09-10 Tue
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