aboutsummaryrefslogtreecommitdiffhomepage
path: root/share
diff options
context:
space:
mode:
authorGravatar axel <axel@liljencrantz.se>2006-10-05 16:44:19 +1000
committerGravatar axel <axel@liljencrantz.se>2006-10-05 16:44:19 +1000
commit8ace1739f59a27dce42fbe8018f59ed903cbb49e (patch)
treea1b13f7e952d1bfe9522c2db5749db83b66c3bfe /share
parent302516a7472fa9459f67cbf84f16c3e193e5896f (diff)
Add missing newline in error message for popd function. Thanks to Phipip Ganchev.
darcs-hash:20061005064419-ac50b-4770f393ea02761a5f4b4044b456d1b618d6da23.gz
Diffstat (limited to 'share')
-rw-r--r--share/functions/popd.fish2
1 files changed, 1 insertions, 1 deletions
diff --git a/share/functions/popd.fish b/share/functions/popd.fish
index efeee7cd..cf2e8ff3 100644
--- a/share/functions/popd.fish
+++ b/share/functions/popd.fish
@@ -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