Global Index (all files) (short | long) | Local Index (files in subdir) (short | long)
pop_hold ( arg1 ) ;
function pop_hold ( arg1 ) ;
| This function is called by | |
|---|---|
function pop_hold ( arg1 ) ;
global HOLD_STACK
if exist('arg1');
if strcmp(lower(arg1),'all');
HOLD_STACK = []; hold off;
else
error('POP_HOLD: invalid argument');
end
else
holded = HOLD_STACK(1);
if holded; hold on; else; hold off; end
HOLD_STACK = HOLD_STACK(2:length(HOLD_STACK));
end