diff --git a/ChangeLog b/ChangeLog index fdb02a943..1af298bf4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2015-02-09 Mikael Magnusson + + * 34466: Src/utils.c: Fix double unmeta in rm verification + 2015-02-08 Daniel Hahler * 34469: Completion/Unix/Command/_git: git completion: add "stash" diff --git a/Src/utils.c b/Src/utils.c index 47d99442d..702829c0c 100644 --- a/Src/utils.c +++ b/Src/utils.c @@ -2460,7 +2460,7 @@ checkrmall(char *s) return 1; fprintf(shout, "zsh: sure you want to delete all the files in "); if (*s != '/') { - nicezputs(pwd[1] ? unmeta(pwd) : "", shout); + nicezputs(pwd[1] ? pwd : "", shout); fputc('/', shout); } nicezputs(s, shout);