mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-30 07:10:58 +02:00
11280: Completion/User/_make: suppress an error with closed stdin
on OpenBSD. 11278: Completion/User/_ssh: disable forwarding to use ssh.
This commit is contained in:
parent
2512681578
commit
dff7eff11b
3 changed files with 12 additions and 5 deletions
13
ChangeLog
13
ChangeLog
|
@ -1,3 +1,10 @@
|
|||
2000-05-09 Tanaka Akira <akr@zsh.org>
|
||||
|
||||
* 11280: Completion/User/_make: suppress an error with closed stdin
|
||||
on OpenBSD.
|
||||
|
||||
* 11278: Completion/User/_ssh: disable forwarding to use ssh.
|
||||
|
||||
2000-05-09 Sven Wischnowsky <wischnow@zsh.org>
|
||||
|
||||
* 11277: Functions/Misc/nslookup: make nslookup function more like
|
||||
|
@ -5,7 +12,7 @@
|
|||
|
||||
2000-05-09 Tanaka Akira <akr@zsh.org>
|
||||
|
||||
* 11276: fix build on OpenBSD.
|
||||
* 11276: configure.in, Src/Modules/zftp.c: fix build on OpenBSD.
|
||||
|
||||
2000-05-09 Sven Wischnowsky <wischnow@zsh.org>
|
||||
|
||||
|
@ -62,8 +69,8 @@
|
|||
|
||||
2000-05-08 Tanaka Akira <akr@zsh.org>
|
||||
|
||||
* Bart, Tanaka Akira: 11247: Don't signal to a process group which
|
||||
has only zombie processes.
|
||||
* Bart, Tanaka Akira: 11247: Src/exec.c: Don't signal to a process
|
||||
group which has only zombie processes.
|
||||
|
||||
2000-05-08 Peter Stephenson <pws@zsh.org>
|
||||
|
||||
|
|
|
@ -39,7 +39,7 @@ else
|
|||
$(awk '/^[a-zA-Z0-9][^\/\t=]+:/ {print $1}
|
||||
/^\.include *<bsd\.port\.(subdir\.|pre\.)?mk>/ || /^\.include *".*mk\/bsd\.pkg\.(subdir\.)?mk"/ {
|
||||
print "fetch fetch-list extract patch configure build install reinstall deinstall package describe checkpatch checksum makesum" }' \
|
||||
FS=: $file)
|
||||
FS=: $file </dev/null)
|
||||
)
|
||||
fi
|
||||
_wanted targets expl 'make target' compadd "$tmp[@]" && return 0
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
_remote_files () {
|
||||
# This is extremely simple-minded; could parse "ls -F" output to do
|
||||
# colorings and LIST_TYPES and so on, but I'm just not that ambitious.
|
||||
compadd $(ssh ${words[CURRENT]%:*} echo ${words[CURRENT]#*:}\*)
|
||||
compadd $(ssh -a -x ${words[CURRENT]%:*} echo ${words[CURRENT]#*:}\*)
|
||||
}
|
||||
|
||||
_ssh () {
|
||||
|
|
Loading…
Reference in a new issue