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

Re: nested comments (please correct lexical scope)

This page is part of the web mail archives of SRFI 62 from before July 7th, 2015. The new archives for SRFI 62 contain all messages, not just those from before July 7th, 2015.



It's just that #; working at the read-level is what makes it useful to me.
If it works at the lexical level it would be strange. For example,
parenthesis are typically individual lexemes, so this:

  (a #;(a) b)

would go to:

  (a a) b)

rather than:

  (a b)

Robby