annotate tests/activeFocus.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 56b8efff64e7
children
rev   line source
adam@1790 1 fun main () : transaction page =
adam@1790 2 i <- fresh;
adam@1790 3 return <xml><body>
adam@1790 4 <ctextbox/>
adam@1790 5 <ctextbox id={i}/>
adam@1790 6 <active code={giveFocus i; return <xml>Done</xml>}/>
adam@1790 7 </body></xml>
adam@1790 8
adam@1790 9 fun dynamic () : transaction page =
adam@1790 10 x <- source <xml/>;
adam@1790 11 return <xml><body>
adam@1790 12 <dyn signal={signal x}/>
adam@1790 13 <button onclick={fn _ => i <- fresh; set x <xml>
adam@1790 14 <ctextbox/>
adam@1790 15 <ctextbox id={i}/>
adam@1790 16 <active code={giveFocus i; return <xml>Done</xml>}/>
adam@1790 17 </xml>}/>
adam@1790 18 </body></xml>