Skip to content

Commit beac07e

Browse files
committed
Merge branch 'rl/maint-stash-i18n-save-error' into maint
i18n marking for an error message for "git stash --notavalidoption" was incorrect. By Ross Lagerwall * rl/maint-stash-i18n-save-error: stash: use eval_gettextln correctly
2 parents a16ae14 + ed3c400 commit beac07e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

git-stash.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -199,8 +199,8 @@ save_stash () {
199199
# $ git stash save --blah-blah 2>&1 | head -n 2
200200
# error: unknown option for 'stash save': --blah-blah
201201
# To provide a message, use git stash save -- '--blah-blah'
202-
eval_gettextln "$("error: unknown option for 'stash save': \$option
203-
To provide a message, use git stash save -- '\$option'")"
202+
eval_gettextln "error: unknown option for 'stash save': \$option
203+
To provide a message, use git stash save -- '\$option'"
204204
usage
205205
;;
206206
*)

0 commit comments

Comments
 (0)