diff options
author | Bart Schaefer <barts@users.sourceforge.net> | 2000-09-14 15:55:21 +0000 |
---|---|---|
committer | Bart Schaefer <barts@users.sourceforge.net> | 2000-09-14 15:55:21 +0000 |
commit | 8aaf13e804be7b0a3a049b10cd367a178f5c8c57 (patch) | |
tree | 63bffd9bb60212b29682dce7f534159e5b219f24 /Completion/Commands/_complete_debug | |
parent | a12ff424b683d74fbd973d06227fb90a0f87d3e1 (diff) | |
download | zsh-8aaf13e804be7b0a3a049b10cd367a178f5c8c57.tar.gz zsh-8aaf13e804be7b0a3a049b10cd367a178f5c8c57.tar.xz zsh-8aaf13e804be7b0a3a049b10cd367a178f5c8c57.zip |
Use ${(q)tmp} after all.
Diffstat (limited to 'Completion/Commands/_complete_debug')
-rw-r--r-- | Completion/Commands/_complete_debug | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/Commands/_complete_debug b/Completion/Commands/_complete_debug index 3269eed4b..c318d9a4f 100644 --- a/Completion/Commands/_complete_debug +++ b/Completion/Commands/_complete_debug @@ -18,7 +18,7 @@ integer ret=$? unsetopt xtrace [[ -t 3 ]] && { - print -sR "${VISUAL:-${EDITOR:-${PAGER:-more}}} $tmp ;: $w" + print -sR "${VISUAL:-${EDITOR:-${PAGER:-more}}} ${(q)tmp} ;: $w" _message -r "Trace output left in $tmp (up-history to view)" [[ $compstate[nmatches] -le 1 && $compstate[list] != *force* ]] && compstate[list]='list force messages' |