Zsh Mailing List Archive
Messages sorted by: Reverse Date, Date, Thread, Author

Test version zsh-3.1.6-test-1: bug in "make" completion



Hi,
completion for make doesn't work. Here's a patch to make it work:

--- Completion/User/_make.old	Wed Jul 14 14:21:58 1999
+++ Completion/User/_make	Wed Jul 14 14:22:16 1999
@@ -19,6 +19,6 @@
   fi
 
   [[ -n "$file" ]] &&
-    compadd - $(awk '/^[a-zA-Z0-9][^/ 	]+:/ {print $1}' FS=: $file) && ret=0
+    compadd - $(awk '/^[a-zA-Z0-9][^\/ 	]+:/ {print $1}' FS=: $file) && ret=0
   (( ret )) && _files
 fi

---------------------------------------------------------------------

CU,
Thomas

-- 
    Thomas Köhler    Email:     jean-luc@xxxxxxxxxxxxxxxxx
        <><           WWW:    http://home.pages.de/~jeanluc/
                      IRC:               jeanluc
      LCARS --- Linux for Computers on All Real Starships



Messages sorted by: Reverse Date, Date, Thread, Author