]> git.eshelyaron.com Git - emacs.git/commitdiff
(completion-ignored-extensions) [ms-dos, windows-nt]:
authorEli Zaretskii <eliz@gnu.org>
Sun, 14 Oct 2001 20:00:28 +0000 (20:00 +0000)
committerEli Zaretskii <eliz@gnu.org>
Sun, 14 Oct 2001 20:00:28 +0000 (20:00 +0000)
Add .ico, .pif, .lnk, .dll, .drv, .vxd, and .386.
Add .so to the Unix and GNU branch.

lisp/ChangeLog
lisp/bindings.el

index 54c001cb06beb86524a9fa06f7f313dd8dbbe1ac..092173917bac48aa0380ed6250cb9f3ffc13b154 100644 (file)
@@ -1,5 +1,9 @@
 2001-10-14  Eli Zaretskii  <eliz@is.elta.co.il>
 
+       * bindings.el (completion-ignored-extensions) [ms-dos, windows-nt]:
+       Add .ico, .pif, .lnk, .dll, .drv, .vxd, and .386.
+       Add .so to the Unix and GNU branch.
+
        * international/latin-1.el: 
        * international/latin-2.el: 
        * international/latin-3.el: 
index 606a620e2da5cbece75bc1802f132d225007d20a..bb4610fa76265a3a2097e031011edd905a1000af 100644 (file)
@@ -421,15 +421,15 @@ is okay.  See `mode-line-format'.")
 ;; making it more likely you will get a unique match.
 (setq completion-ignored-extensions
       (append
-       (cond ((or (eq system-type 'ms-dos) (eq system-type 'windows-nt))
-             '(".o" "~" ".bin" ".bak" ".obj" ".map"
-               ".a" ".ln" ".blg" ".bbl"))
+       (cond ((memq system-type '(ms-dos windows-nt))
+             '(".o" "~" ".bin" ".bak" ".obj" ".map" ".ico" ".pif" ".lnk"
+               ".a" ".ln" ".blg" ".bbl" ".dll" ".drv" ".vxd" ".386"))
             ((eq system-type 'vax-vms)
              '(".obj" ".exe" ".bin" ".lbin" ".sbin"
                ".brn" ".rnt" ".lni" ".lis"
                ".olb" ".tlb" ".mlb" ".hlb"))
             (t
-             '(".o" "~" ".bin" ".lbin"
+             '(".o" "~" ".bin" ".lbin" ".so"
                ".a" ".ln" ".blg" ".bbl")))
        '(".elc" ".lof"
         ".glo" ".idx" ".lot"