# HG changeset patch # User Eli Zaretskii # Date 1003089470 0 # Node ID 2e2351633c8e68617cca5ed1936329945dc4dbdd # Parent 6835d69d43f07eaac89c6c8486e7beb91b480c4b (completion-ignored-extensions) [ms-dos, windows-nt]: Add .ico, .pif, .lnk, .dll, .drv, .vxd, and .386. Add .so to the Unix and GNU branch. diff -r 6835d69d43f0 -r 2e2351633c8e lisp/bindings.el --- 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"