From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 21099 invoked by alias); 23 Jul 2014 11:29:09 -0000 Mailing-List: contact zsh-workers-help@zsh.org; run by ezmlm Precedence: bulk X-No-Archive: yes List-Id: Zsh Workers List List-Post: List-Help: X-Seq: 32895 Received: (qmail 28455 invoked from network); 23 Jul 2014 11:29:05 -0000 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_NONE, SPF_HELO_PASS autolearn=ham version=3.3.2 From: Frank Terbeck To: zsh-workers@zsh.org Cc: Ansgar Burchardt Subject: [PATCH] Match more shared library names. Date: Wed, 23 Jul 2014 13:17:01 +0200 Message-Id: <1406114221-15815-1-git-send-email-ft@bewatermyfriend.org> X-Mailer: git-send-email 1.9.0.138.g2de3478 X-Df-Sender: NDMwNDQ0 From: Ansgar Burchardt --- Received via Debian's BTS: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=755789 Completion/Unix/Command/_nm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Completion/Unix/Command/_nm b/Completion/Unix/Command/_nm index 5638014..3ceb8c9 100644 --- a/Completion/Unix/Command/_nm +++ b/Completion/Unix/Command/_nm @@ -21,7 +21,7 @@ case $state in _alternative \ "object-files:object file:_path_files -g '*.o'" \ "executable-files:executable file:_path_files -g '*(*)'" \ - "dynamic-libraries:dynamic library:_path_files -g '*.so'" \ + "dynamic-libraries:dynamic library:_path_files -g '*.so(.*)#'" \ "static-libraries:static library:_path_files -g '*.a'" \ "directories:directory:_path_files -g '*(/)'" && ret=0 ;; -- 2.0.1