about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPeter Stephenson <pws@users.sourceforge.net>2010-11-25 17:42:28 +0000
committerPeter Stephenson <pws@users.sourceforge.net>2010-11-25 17:42:28 +0000
commitbfcf98a7d31f0842757353ff9ec6813f92f50f80 (patch)
tree304657c28b39e6f52c9ff9863f84394cf354a62d
parentd89e55fe0e78e29808c48e7f12003e765195a21e (diff)
downloadzsh-bfcf98a7d31f0842757353ff9ec6813f92f50f80.tar.gz
zsh-bfcf98a7d31f0842757353ff9ec6813f92f50f80.tar.xz
zsh-bfcf98a7d31f0842757353ff9ec6813f92f50f80.zip
Sebastian Stark: users/15581: MacOS has .bundle DLL files.
-rw-r--r--ChangeLog5
-rw-r--r--Completion/Zsh/Command/_zmodload2
2 files changed, 5 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 7029cde4a..5f2ed7009 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -5,6 +5,9 @@
 
 2010-11-25  Peter Stephenson  <pws@csr.com>
 
+	* Sebastian Stark: users/15581:
+	Completion/Zsh/Command/_zmodload: MacOS has .bundle DLL files.
+
 	* users/15580: Completion/Zsh/Function/_zsh-mime-handler,
 	Functions/MIME/zsh-mime-handler: fixes for completion when
 	dropping through to normal completion.
@@ -13852,5 +13855,5 @@
 
 *****************************************************
 * This is used by the shell to define $ZSH_PATCHLEVEL
-* $Revision: 1.5128 $
+* $Revision: 1.5129 $
 *****************************************************
diff --git a/Completion/Zsh/Command/_zmodload b/Completion/Zsh/Command/_zmodload
index c11cf18eb..ffcab28dd 100644
--- a/Completion/Zsh/Command/_zmodload
+++ b/Completion/Zsh/Command/_zmodload
@@ -62,7 +62,7 @@ else
     _requested loadedmodules expl 'loaded modules' \
       compadd -k 'modules[(R)loaded]' && ret=0
     _requested files expl 'module file' \
-      _files -W module_path -/g '*.(dll|s[ol])(:r)' && ret=0
+      _files -W module_path -/g '*.(dll|s[ol]|bundle)(:r)' && ret=0
     _requested aliases expl 'module alias' \
       compadd "$suf[@]" -k 'modules[(R)alias*]' && ret=0
   done