1. I'm making heavy weather of the difference between SPLIT and SPLICE at
http://sourceforge.net/p/readable/wiki/Current

2. I think I can come to terms with GROUP (as long as it doesn't have to be
on a line by itself), but I don't like SPLICE. The example given is in arc:

if
  cond1() \ expr1()
  cond2() \ expr2()
  \         expr3()

I'd rather just insert parens and say:

(if
  cond1()  expr1()
  cond2()  expr2()
           expr3())

Or:

(if
  cond1()
    expr1()
  cond2()
    expr2()
    expr3())

In either case, I'd give up indent inside the clause and try to keep it
simple by refactoring.
------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
Readable-discuss mailing list
Readable-discuss@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/readable-discuss

Reply via email to