about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--Completion/Unix/Command/_w3m2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index d07b68074..af37e1d60 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2002-04-25  Clint Adams  <clint@zsh.org>
+
+	* 17044: Completion/Unix/Command/_w3m: complete all files, not
+	just *.html.
+
 2002-04-25  Peter Stephenson  <pws@csr.com>
 
 	* 17041: Src/Modules/zftp.c: Minor but fatal typos creating a data
diff --git a/Completion/Unix/Command/_w3m b/Completion/Unix/Command/_w3m
index 2d4202112..4ce8ad1e0 100644
--- a/Completion/Unix/Command/_w3m
+++ b/Completion/Unix/Command/_w3m
@@ -42,7 +42,7 @@ case $state in
 	   compadd $_w3mhistory
 	fi
 
-	_alternative 'files:file:_files "*.html"' 'urls:url:_urls'
+	_urls -f
 	;;
 
 esac