aboutsummaryrefslogtreecommitdiffstats
path: root/zencoding.el
diff options
context:
space:
mode:
authorChris Done <chrisdone@gmail.com>2009-11-07 12:23:25 +0000
committerChris Done <chrisdone@gmail.com>2009-11-07 12:23:25 +0000
commit09b6e7ac3e50281c4e8b066a3c99d51172a79409 (patch)
tree85d57037d6bbdee7cee85561cb6c0578cf1aea2f /zencoding.el
parentf24909c73fe519be48f92ddb16255d0004256aed (diff)
downloademmet-mode-09b6e7ac3e50281c4e8b066a3c99d51172a79409.tar.lz
emmet-mode-09b6e7ac3e50281c4e8b066a3c99d51172a79409.tar.xz
emmet-mode-09b6e7ac3e50281c4e8b066a3c99d51172a79409.zip
updated bug in identifier parsing (forgot to return error)
Diffstat (limited to 'zencoding.el')
-rw-r--r--zencoding.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/zencoding.el b/zencoding.el
index 255d7a8..3384256 100644
--- a/zencoding.el
+++ b/zencoding.el
@@ -211,7 +211,9 @@
(defun zencoding-identifier (input)
"Parse an identifier expression, e.g. #foo"
(zencoding-parse "#" 1 "#"
- (zencoding-run zencoding-name `((identifier . ,expr) . ,input))))
+ (zencoding-run zencoding-name
+ `((identifier . ,expr) . ,input)
+ it)))
(defun zencoding-classes (input)
"Parse many classes."