Mercurial > urweb
view tests/css.ur @ 2142:3288e3c9948b
Fix XML indentation in Emacs mode
The return value of MATCH-STRING is a string. At least on Emacs 25,
the comparisons between string and character with EQUAL could never
succeed, and so the cases for matching braces were never triggered.
GET-TEXT-PROPERTY may return a list rather than an atom (for example,
on long lines with whitespace-mode turned on), and this broke the
heuristic of looking for the tag face in previous text.
author | Julian Squires <julian@cipht.net> |
---|---|
date | Mon, 04 May 2015 14:35:07 -0400 |
parents | 277480862cef |
children |
line wrap: on
line source
style st1 style st2 style st_3 fun main () = return <xml><body> <span title="Whoa" class={classes st1 st2}>Hi!</span> <span class="st-3 st2">Bye!</span> <span class="st1">Appendix!</span> <span class="">Sequel!</span> <span style="width: 30%">A</span> <span class="st-3" style="color: blue red">B</span> <span style="background: url(http://www.google.com/image.png)">C</span> <span style="background: url('http://www.google.com/image.png') red 10% 66px">D</span> <span style="color: red; width: 90 green; background: url(http://www.google.com/foo.jpg);">C</span> </body></xml>