changeset 39930:2e2351633c8e

(completion-ignored-extensions) [ms-dos, windows-nt]: Add .ico, .pif, .lnk, .dll, .drv, .vxd, and .386. Add .so to the Unix and GNU branch.
author Eli Zaretskii <eliz@gnu.org>
date Sun, 14 Oct 2001 19:57:50 +0000
parents 6835d69d43f0
children 6409c35c922d
files lisp/bindings.el
diffstat 1 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/bindings.el	Sun Oct 14 19:40:02 2001 +0000
+++ b/lisp/bindings.el	Sun Oct 14 19:57:50 2001 +0000
@@ -421,15 +421,15 @@
 ;; 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"