about summary refs log tree commit diff
diff options
context:
space:
mode:
authorOliver Kiddle <opk@users.sourceforge.net>2002-09-26 11:46:05 +0000
committerOliver Kiddle <opk@users.sourceforge.net>2002-09-26 11:46:05 +0000
commit3dec409d1e989ebce4e51f603a86a00e3b3df717 (patch)
tree629e03b8749f831d6aaafef335864a34fae45d32
parent0c219d76ed8db7151fb87b78d1077fef06c6e5eb (diff)
downloadzsh-3dec409d1e989ebce4e51f603a86a00e3b3df717.tar.gz
zsh-3dec409d1e989ebce4e51f603a86a00e3b3df717.tar.xz
zsh-3dec409d1e989ebce4e51f603a86a00e3b3df717.zip
fix minor bug - -g to _files was missing despite presence of the glob
-rw-r--r--ChangeLog2
-rw-r--r--Completion/Unix/Command/_lynx2
2 files changed, 3 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 3c420804f..cf96b1c9a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2002-09-26  Oliver Kiddle  <opk@zsh.org>
 
+	* unposted: Completion/Unix/Command/_lynx: minor bug fix (missing -g)
+
 	* 17632, 16546 (Felix): Completion/Unix/Command/_cvs: merge
 	changes from 4.1 branch
 
diff --git a/Completion/Unix/Command/_lynx b/Completion/Unix/Command/_lynx
index f64190c8c..855213b7c 100644
--- a/Completion/Unix/Command/_lynx
+++ b/Completion/Unix/Command/_lynx
@@ -140,6 +140,6 @@ restrictions)
     outside_telnet print shell suspend telnet_port useragent
   ;;
 html)
-  _alternative 'files:file:_files "*.x#html"' 'urls:url:_urls'
+  _alternative 'files:file:_files -g "*.x#html"' 'urls:url:_urls'
   ;;
 esac