/jEdit/tags/jedit-4-1-pre5/bsh/commands/unset.bsh
# · Unknown · 15 lines · 12 code · 3 blank · 0 comment · 0 complexity · 9432482d38db7ca13bc2c892a286c7b0 MD5 · raw file
- /**
- "Undefine" the variable specifed by 'name' (So that it tests == void).
- <p>
- <em>Note: there will be a better way to do this in the future. This is
- currently equivalent to doing namespace.setVariable(name, null);</em>
- */
- bsh.help.unset = "usage: unset( name )";
- void unset( String name ) {
- if ( arg == null )
- return;
- this.caller.namespace.setVariable(name, null);
- }