aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/css-abbrev.el2
-rw-r--r--zencoding-mode.el2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/css-abbrev.el b/src/css-abbrev.el
index 00c182f..3c528e8 100644
--- a/src/css-abbrev.el
+++ b/src/css-abbrev.el
@@ -65,7 +65,7 @@
(let ((f (first i))
(s (second i)))
(if f
- (if (and s (or (eql s "") (string-match "^[#0-9$-]" s)))
+ (if (and s (or (string= s "") (string-match "^[#0-9$-]" s)))
(progn
(setf rt (cons (concat f "+" s) rt))
(setf i (cddr i)))
diff --git a/zencoding-mode.el b/zencoding-mode.el
index 98c9cee..9958cbb 100644
--- a/zencoding-mode.el
+++ b/zencoding-mode.el
@@ -1606,7 +1606,7 @@ tbl))
(let ((f (first i))
(s (second i)))
(if f
- (if (and s (or (eql s "") (string-match "^[#0-9$-]" s)))
+ (if (and s (or (string= s "") (string-match "^[#0-9$-]" s)))
(progn
(setf rt (cons (concat f "+" s) rt))
(setf i (cddr i)))