diff options
author | Tanaka Akira <akr@users.sourceforge.net> | 2000-05-10 07:15:33 +0000 |
---|---|---|
committer | Tanaka Akira <akr@users.sourceforge.net> | 2000-05-10 07:15:33 +0000 |
commit | 78e327861c7c593a704f7a541cb0e858513ee60e (patch) | |
tree | 6ea79e2f00ec92c7e6e9901911e18b2b124d108e | |
parent | 4c1d37d7d061ed97a4eaa0714560f3228fd6ff13 (diff) | |
download | zsh-78e327861c7c593a704f7a541cb0e858513ee60e.tar.gz zsh-78e327861c7c593a704f7a541cb0e858513ee60e.tar.xz zsh-78e327861c7c593a704f7a541cb0e858513ee60e.zip |
revert 11280
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | Completion/User/_make | 2 |
2 files changed, 1 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog index 134cba519..54d4cfb0f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -19,9 +19,6 @@ 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> diff --git a/Completion/User/_make b/Completion/User/_make index bfdf7b91e..09e4e4f89 100644 --- a/Completion/User/_make +++ b/Completion/User/_make @@ -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 </dev/null) + FS=: $file) ) fi _wanted targets expl 'make target' compadd "$tmp[@]" && return 0 |