From 1810b98154fa150d3f4bcb0d474076997adb1d18 Mon Sep 17 00:00:00 2001 From: Nathan Weizenbaum Date: Mon, 27 Jul 2009 22:41:55 -0700 Subject: [PATCH] Get rid of a compile error in haml-mode. --- extra/haml-mode.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extra/haml-mode.el b/extra/haml-mode.el index 1e2af827..849a5fcc 100644 --- a/extra/haml-mode.el +++ b/extra/haml-mode.el @@ -486,7 +486,7 @@ beginning the hash." (save-excursion (while t (beginning-of-line) - (if (looking-at (eval-when-compile (concat haml-tag-beg-re "\\([{(]\\)"))) + (if (looking-at (concat haml-tag-beg-re "\\([{(]\\)")) (progn (goto-char (- (match-end 0) 1)) (haml-limited-forward-sexp (save-excursion (end-of-line) (point)))