diff options
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | Completion/Linux/Command/_lsusb | 2 |
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog index b790b381c..cfd367ca7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2010-04-25 Clint Adams <clint@zsh.org> + + * 27912: Completion/Linux/Command/_lsusb: presume that + pci.ids is uncompressed now. + 2010-04-23 Peter Stephenson <p.w.stephenson@ntlworld.com> * users/15028 (modified to do the unquoting a bit more @@ -13052,5 +13057,5 @@ ***************************************************** * This is used by the shell to define $ZSH_PATCHLEVEL -* $Revision: 1.4961 $ +* $Revision: 1.4962 $ ***************************************************** diff --git a/Completion/Linux/Command/_lsusb b/Completion/Linux/Command/_lsusb index 37701acd5..17d88d4b5 100644 --- a/Completion/Linux/Command/_lsusb +++ b/Completion/Linux/Command/_lsusb @@ -25,7 +25,7 @@ _arguments \ _lsusb_devices[${pair}]="$match[2]" ;; esac - done < <(zcat /var/lib/usbutils/usb.ids) + done < /var/lib/usbutils/usb.ids fi compadd -k _lsusb_devices |