From 8ace1739f59a27dce42fbe8018f59ed903cbb49e Mon Sep 17 00:00:00 2001 From: axel Date: Thu, 5 Oct 2006 16:44:19 +1000 Subject: [PATCH] Add missing newline in error message for popd function. Thanks to Phipip Ganchev. darcs-hash:20061005064419-ac50b-4770f393ea02761a5f4b4044b456d1b618d6da23.gz --- share/functions/popd.fish | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/functions/popd.fish b/share/functions/popd.fish index efeee7cd5..cf2e8ff37 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