X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=git-stash.sh;h=31dec0abf13ee7d6ded313b24253cd12254f1685;hb=cec3e186f7b76cdced54286ef1da42b6978c4c8d;hp=f4e6f05ee212f452a1b3e13c492960a9222029f7;hpb=b14b969ab98d5dac835e57a2b6b9e9229b2e1c97;p=git.git diff --git a/git-stash.sh b/git-stash.sh index f4e6f05ee..31dec0abf 100755 --- a/git-stash.sh +++ b/git-stash.sh @@ -198,8 +198,8 @@ save_stash () { # $ git stash save --blah-blah 2>&1 | head -n 2 # error: unknown option for 'stash save': --blah-blah # To provide a message, use git stash save -- '--blah-blah' - eval_gettext "$("error: unknown option for 'stash save': \$option - To provide a message, use git stash save -- '\$option'")"; echo + eval_gettextln "$("error: unknown option for 'stash save': \$option + To provide a message, use git stash save -- '\$option'")" usage ;; *) @@ -470,10 +470,7 @@ apply_stash () { status=$? if test -n "$INDEX_OPTION" then - ( - gettext "Index was not unstashed." && - echo - ) >&2 + gettextln "Index was not unstashed." >&2 fi exit $status fi