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 | |
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')
-rw-r--r-- | src/comments.el | 2 | ||||
-rw-r--r-- | src/init.el | 4 |
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 |