view general/popd.m @ 61:eff6bddf82e3 tip

Finally implemented perceptual brightness thing.
author samer
date Sun, 11 Oct 2015 10:20:42 +0100
parents e44f49929e56
children
line wrap: on
line source
function D=popd
% popd:	Pop directory off stack
% dirname=popd:	pop and return directory name
% popd:				pop directory and cd into it.
global DirStack
d=DirStack{1};
DirStack=DirStack{2};
if nargout<1, cd(d); else D=d; end