Mercurial > urweb
annotate tests/rpcN.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 | 5891f47d7cff |
children |
rev | line source |
---|---|
adamc@614 | 1 table t : { A : int } |
adamc@614 | 2 |
adamc@614 | 3 fun main () : transaction page = |
adamc@614 | 4 let |
adamc@614 | 5 fun count a = r <- oneRow (SELECT COUNT( * ) AS N FROM t WHERE t.A = {[a]}); |
adamc@614 | 6 return r.N |
adamc@614 | 7 in |
adamc@614 | 8 s <- source 0; |
adamc@614 | 9 return <xml><body> |
adamc@614 | 10 <button value="Get It On!" |
adamc@614 | 11 onclick={n <- count 3; |
adamc@614 | 12 set s n}/><br/> |
adamc@614 | 13 <br/> |
adamc@614 | 14 Current: <dyn signal={n <- signal s; return <xml>{[n]}</xml>}/> |
adamc@614 | 15 </body></xml> |
adamc@614 | 16 end |