about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--Completion/Unix/Command/_nm2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 224e3de7c..21c3ac2cc 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2014-07-23  Ansgar Burchardt  <ansgar@debian.org>
+
+	* 32895: Completion/Unix/Command/_nm: Match more shared library
+	names.
+
 2014-07-20  Barton E. Schaefer  <schaefer@zsh.org>
 
 	* unposted: Doc/Zsh/builtins.yo: force retention of whitespace
diff --git a/Completion/Unix/Command/_nm b/Completion/Unix/Command/_nm
index 5638014d6..3ceb8c932 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
   ;;