Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
proc rep {name} {
    upvar $name n 
    puts "nm is $n"
}

In the above procedure, 'name' is a parameter which is passed to a procedure named 'rep'. When I run this program I got "error : Can't read "n" : no such variable". Could any one tell me what could be the possible cause for this error.

share|improve this question
1  
Probably that the variable which name is in $name doesn't exist. upvar doesn't check that. – potrzebie Feb 8 at 6:13
No, It did exist. – Praveen kumar Feb 8 at 8:45

1 Answer

That error message would be produced if the variable whose name you passed to rep did not exist in the calling scope. For example, check this interactive session with tclsh…

% proc rep {name} {
    upvar $name n 
    puts "nm is $n"
}
% rep foo
can't read "n": no such variable
% set foo x
x
% rep foo
nm is x

Going deeper…

The variable foo is in a funny state after the upvar if it is unset; it's actually existing (it's referenced in the global namespace's hash table of variables) but has no contents, so tests of whether it exists fail. (A variable is said to exist when it has an entry somewhere — that is, some storage to put its contents in — and it has a value set in that storage; an unset variable can be one that has a NULL at the C level in that storage. The Tcl language itself does not support NULL values at all for this reason; they correspond to non-existence.)

share|improve this answer
As for why your code is failing, I'm guessing you passed the wrong variable name in or called it from the wrong scope. Easily done. – Donal Fellows Feb 8 at 8:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.