diff options
author | Adam Chlipala <adam@chlipala.net> | 2011-07-15 18:45:03 -0400 |
---|---|---|
committer | Adam Chlipala <adam@chlipala.net> | 2011-07-15 18:45:03 -0400 |
commit | 4593948fd27e6cdc4c24a0b008ce1beac4df2560 (patch) | |
tree | f0f8093663846ef035f862acf212d11002417a54 /src/elisp | |
parent | b36a8def513d0fdd96fce220cf1f14409853c7b5 (diff) |
Tutorial tweaks
Diffstat (limited to 'src/elisp')
-rw-r--r-- | src/elisp/urweb-mode.el | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/elisp/urweb-mode.el b/src/elisp/urweb-mode.el index c9fe5f19..0beed1f9 100644 --- a/src/elisp/urweb-mode.el +++ b/src/elisp/urweb-mode.el @@ -181,13 +181,11 @@ See doc for the variable `urweb-mode-info'." ((save-excursion (backward-char 1) (or (looking-at "=>") (looking-at "->") (looking-at "<>"))) - nil) + (setq finished t)) ((or (looking-at "< ") (looking-at "<=")) nil) ((looking-at "<") (setq finished t)) - ((save-excursion (backward-char 1) (looking-at " >")) - nil) ((looking-at ">") (cond ((> depth 0) |