[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

too TRUE



Everyone seems agreed that (TRUE exp) is equivalent to (BLOCK exp T).
I was just worried that the line in the T manual about TRUE ignoring
its arguments might be worded more strongly in the future.

While in most cases I'd use BLOCK over TRUE, the case at hand was
the following:

    (AND test1
         test2
         (TRUE exp1)
         test3
         (TRUE exp2)
         test4
         ...)

For someone skimming through the code, doesn't TRUE signal much better
that the expressions can never stop the flow through the AND?
-------