mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-10-13 23:31:08 +02:00
36422: add missing unmeta()
This commit is contained in:
parent
8931e47b8d
commit
45e67c3552
2 changed files with 5 additions and 1 deletions
|
@ -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>
|
2015-09-07 Daniel Shahaf <d.s@daniel.shahaf.name>
|
||||||
|
|
||||||
* 36437: Doc/Zsh/zle.yo Src/Zle/zle.h: Document interaction of
|
* 36437: Doc/Zsh/zle.yo Src/Zle/zle.h: Document interaction of
|
||||||
|
|
|
@ -448,7 +448,7 @@ zgetcwd(void)
|
||||||
}
|
}
|
||||||
#endif /* HAVE_GETCWD */
|
#endif /* HAVE_GETCWD */
|
||||||
if (!ret)
|
if (!ret)
|
||||||
ret = pwd;
|
ret = unmeta(pwd);
|
||||||
if (!ret)
|
if (!ret)
|
||||||
ret = dupstring(".");
|
ret = dupstring(".");
|
||||||
return ret;
|
return ret;
|
||||||
|
|
Loading…
Reference in a new issue