Use internal functions rather than exports.

This commit is contained in:
Marcus Stade 2012-12-27 17:56:24 +01:00
Родитель 19d3d91bb6
Коммит 02efac873c
1 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -923,10 +923,10 @@ function _pushd(options, dir) {
_dirStack.unshift(dir);
if (!options['n']) {
exports.cd(_dirStack[0]);
_cd('', _dirStack[0]);
}
return _dirs();
return _dirs('');
};
exports.pushd = wrap('pushd', _pushd);
@ -963,13 +963,13 @@ function _popd(options, index) {
var dir = _dirStack.get(index || "+0")
if (!options['n']) {
exports.cd(_dirStack[0]);
_cd('', _dirStack[0]);
}
} else {
error('directory stack empty')
}
return _dirs();
return _dirs('');
};
exports.popd = wrap("popd", _popd);