Skip to content

Commit cd58b71

Browse files
committed
Merge branch 'rl/maint-stash-i18n-save-error'
The i18n of error message "git stash save" was not properly done. By Ross Lagerwall * rl/maint-stash-i18n-save-error: stash: use eval_gettextln correctly
2 parents 8a90ddd + ed3c400 commit cd58b71

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)