Add missing newline in error message for popd function. Thanks to Phipip Ganchev.

darcs-hash:20061005064419-ac50b-4770f393ea02761a5f4b4044b456d1b618d6da23.gz
This commit is contained in:
axel 2006-10-05 16:44:19 +10:00
parent 302516a747
commit 8ace1739f5

View file

@ -3,7 +3,7 @@ function popd -d (N_ "Pop dir from stack")
if test $dirstack[1]
cd $dirstack[1]
else
printf (_ "%s: Directory stack is empty...") popd
printf (_ "%s: Directory stack is empty...\n") popd
return 1
end