diff options
author | Peter Stephenson <pws@users.sourceforge.net> | 2010-10-15 18:56:16 +0000 |
---|---|---|
committer | Peter Stephenson <pws@users.sourceforge.net> | 2010-10-15 18:56:16 +0000 |
commit | bdb38058e4bf67d3a473c806bbb5d7eac5187f51 (patch) | |
tree | 82039ddf7ca0e84980fb23a5816268270a21e02b /Src/builtin.c | |
parent | 69134f18cb27ae6a3d8de4c45a77f6da714df3f9 (diff) | |
download | zsh-bdb38058e4bf67d3a473c806bbb5d7eac5187f51.tar.gz zsh-bdb38058e4bf67d3a473c806bbb5d7eac5187f51.tar.xz zsh-bdb38058e4bf67d3a473c806bbb5d7eac5187f51.zip |
28345: make ${(D)...} return a fully usable command line argument
Diffstat (limited to 'Src/builtin.c')
-rw-r--r-- | Src/builtin.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Src/builtin.c b/Src/builtin.c index f80269846..411b834e7 100644 --- a/Src/builtin.c +++ b/Src/builtin.c @@ -3704,6 +3704,7 @@ bin_print(char *name, char **args, Options ops, int func) Nameddir d; queue_signals(); + /* TODO: finddir takes a metafied file */ d = finddir(args[n]); if(d) { int dirlen = strlen(d->dir); |