1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-10-13 11:21:13 +02:00

36422: add missing unmeta()

This commit is contained in:
Oliver Kiddle 2015-09-08 11:12:10 +02:00
parent 8931e47b8d
commit 45e67c3552
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2015-09-08 Oliver Kiddle <opk@zsh.org>
36422: Src/compat.c: add missing unmeta()
2015-09-07 Daniel Shahaf <d.s@daniel.shahaf.name>
* 36437: Doc/Zsh/zle.yo Src/Zle/zle.h: Document interaction of

View file

@ -448,7 +448,7 @@ zgetcwd(void)
}
#endif /* HAVE_GETCWD */
if (!ret)
ret = pwd;
ret = unmeta(pwd);
if (!ret)
ret = dupstring(".");
return ret;