diff options
author | Eli Zaretskii <eliz@gnu.org> | 2001-10-14 20:00:28 +0000 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2001-10-14 20:00:28 +0000 |
commit | a12ca05478f3eb4429a1038699f5dad682f4056d (patch) | |
tree | b98a19dffd41855297b90dd0f8cfe039351f568c /lisp/bindings.el | |
parent | 5a595785484133f5c1627b46cb975367d3e075a5 (diff) | |
download | emacs-a12ca05478f3eb4429a1038699f5dad682f4056d.tar.gz |
(completion-ignored-extensions) [ms-dos, windows-nt]:
Add .ico, .pif, .lnk, .dll, .drv, .vxd, and .386.
Add .so to the Unix and GNU branch.
Diffstat (limited to 'lisp/bindings.el')
-rw-r--r-- | lisp/bindings.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/bindings.el b/lisp/bindings.el index 606a620e2da..bb4610fa762 100644 --- a/lisp/bindings.el +++ b/lisp/bindings.el @@ -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" |