[cvs-nhc98] Remove the space between a constructor/variable and any na

Malcolm Wallace malcolm@sparud.net
Tue, 11 Feb 2003 13:07:47 +0100 (CET)


malcolm: Tue Feb 11 13:07:46 CET 2003

Update of /usr/src/master/nhc/src/hat/tools
In directory hinken:/tmp/cvs-serv29157

Modified Files:
	SExp.hs 
Log Message:
Remove the space between a constructor/variable and any named fields
that follow it, for human-parsability.  Some people find an expression
like
    f V {num=1} W {val=2}
slightly confusing, where
    f V{num=1} W{val=2}
would be clearer.  (Named field syntax binds more tightly than
application by juxtaposition.)