mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-05 11:01:13 +02:00
use _x_display when setting $DISPLAY and fix bug in enable completion (15594)
This commit is contained in:
parent
4b5c30993a
commit
adbab91edb
3 changed files with 8 additions and 2 deletions
|
@ -1,5 +1,9 @@
|
|||
2001-08-07 Oliver Kiddle <opk@zsh.org>
|
||||
|
||||
* 15594: Completion/Zsh/Context/_value,
|
||||
Completion/Zsh/Command/_enable: use _x_display when setting
|
||||
$DISPLAY and fix substitution mistake in enable completion
|
||||
|
||||
* 15590: Completion/Zsh/Context/_equal: after 15586, we no
|
||||
longer want to complete aliases in the equal context
|
||||
|
||||
|
@ -25,7 +29,7 @@
|
|||
|
||||
2001-08-07 Sven Wischnowsky <wischnow@zsh.org>
|
||||
|
||||
* 15584: Src/parse.c: increment zwc fie version (which means
|
||||
* 15584: Src/parse.c: increment zwc file version (which means
|
||||
changing the magic number)
|
||||
|
||||
2001-08-06 Oliver Kiddle <opk@zsh.org>
|
||||
|
|
|
@ -5,4 +5,4 @@ _arguments -C -s -A "-*" -S \
|
|||
"(-a -r)-f[act on functions]:*:functions:(${(k)dis_functions})" \
|
||||
"(-a -f)-r[act on reserved words]:*:reserved-words:(${(k)dis_reswords})" \
|
||||
'-m[treat arguments as patterns]' \
|
||||
"*:builtin command:(${(@k)dis_builtins})"
|
||||
"*:builtin command:(${(k)dis_builtins})"
|
||||
|
|
|
@ -58,4 +58,6 @@ _value:LDFLAGS () {
|
|||
fi
|
||||
}
|
||||
|
||||
_value:DISPLAY() { _x_display "$@" }
|
||||
|
||||
_value "$@"
|
||||
|
|
Loading…
Reference in a new issue