Special symbols can be shadowed inconsistently
Description
Environment
Activity

import April 29, 2014 at 11:58 AM
Comment made by: oakley jurgens
That's true, but macros don't have to use the syntax quote. See for example the definition of when.

Nicola Mometto April 29, 2014 at 11:37 AM
That won't be the case since what I'm proposing includes making syntax-quote aware of the namespaced special symbols.
`def would expand to 'clojure.core/def for example.

import April 29, 2014 at 6:48 AM
Comment made by: oakley jurgens
I think that shadowing special symbols is a bad idea. If that was possible, we'd have to change most macros in clojure.core to make them safe (i.e. explicitly add a namespace to each special symbol usage). And how would we handle special symbols that are not just implementation specific, like try and new? Every 3rd party macro that uses those might become unsafe.
My personal preference would be to prohibit the shadowing of special symbols.

Nicola Mometto April 28, 2014 at 4:01 PM
I don't think that shadowing special symbols is a good idea, but probably having all the special symbols namespace qualified (clojure.core/import* is the only one ns-qualified atm) along with checking for the symbol in the locals env first and fallbacking to the special symbols map after that, would probably help in those scenarios
Details
Assignee
UnassignedUnassignedReporter
importimportLabels
Priority
MinorAffects versions
Details
Details
Assignee
Reporter

The compiler does not complain about let binding (or def-ing) special symbols, but the binding only works if not used at the beginning of a list:
These work:
This doesn't work:
This is true for all special symbols, not just publicly exposed ones like try and new, but also internal ones like fn*.
I would expect consistent behaviour: either the compiler does not permit shadowing special symbols at all, or shadowing them works in all cases.