summaryrefslogtreecommitdiff
path: root/src/elisp/urweb-mode.el
diff options
context:
space:
mode:
Diffstat (limited to 'src/elisp/urweb-mode.el')
-rw-r--r--src/elisp/urweb-mode.el6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/elisp/urweb-mode.el b/src/elisp/urweb-mode.el
index 0beed1f9..9138dafb 100644
--- a/src/elisp/urweb-mode.el
+++ b/src/elisp/urweb-mode.el
@@ -170,8 +170,10 @@ See doc for the variable `urweb-mode-info'."
(finished nil)
(answer nil)
)
- (while (and (not finished) (re-search-backward "[<>{}]" nil t))
+ (while (and (not finished) (re-search-backward "[<>{}]|\\*\)" nil t))
(cond
+ ((looking-at "*)")
+ (search-backward "(*"))
((looking-at "{")
(if (> depth 0)
(decf depth)
@@ -183,7 +185,7 @@ See doc for the variable `urweb-mode-info'."
(looking-at "<>")))
(setq finished t))
((or (looking-at "< ") (looking-at "<="))
- nil)
+ (setq finished t))
((looking-at "<")
(setq finished t))
((looking-at ">")