Good day,
Consider the following:
In[1]:= HoldComplete[With[{line=a},Null]]
Names["`*"]
Attributes/@Names["`*"]
Remove/@Names["`*"]
Out[1]= HoldComplete[With[{line=a},Null]]
Out[2]= {a,line,line$}
Out[3]= {{},{},{Temporary}}
During evaluation of In[1]:= Remove::rmnsm: There are no symbols matching
"line$". >>
Out[4]= {Null,Null,Null}
One can see that Remove::rmnsm
message appear although the temporary
Symbol
line$
still exists up the that moment. Why this happens?
P.S. I am using Mathematica 7.01. In v.5.2 this message does not appear.