Mercurial > urweb
view tests/table.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 | 71bafe66dbe1 |
children |
line wrap: on
line source
table t1 : {A : int, B : string, C : float} table t2 : {A : float, D : int} val q1 = (SELECT * FROM t1) val q2 = (SELECT * FROM t1, t2) (*val q3 = (SELECT * FROM t1, t1)*) val q3 = (SELECT * FROM t1, t1 AS T2) val q4 = (SELECT * FROM {{t1}} AS T, t1 AS T2) val q5 = (SELECT t1.A FROM t1) val q6 = (SELECT t1.B, t1.C, t1.A FROM t1) val q7 = (SELECT t1.A, t2.A FROM t1, t2)