aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2001-10-14 20:00:28 +0000
committerEli Zaretskii2001-10-14 20:00:28 +0000
commita12ca05478f3eb4429a1038699f5dad682f4056d (patch)
treeb98a19dffd41855297b90dd0f8cfe039351f568c
parent5a595785484133f5c1627b46cb975367d3e075a5 (diff)
downloademacs-a12ca05478f3eb4429a1038699f5dad682f4056d.tar.gz
emacs-a12ca05478f3eb4429a1038699f5dad682f4056d.zip
(completion-ignored-extensions) [ms-dos, windows-nt]:
Add .ico, .pif, .lnk, .dll, .drv, .vxd, and .386. Add .so to the Unix and GNU branch.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/bindings.el8
2 files changed, 8 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 54c001cb06b..092173917ba 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,9 @@
12001-10-14 Eli Zaretskii <eliz@is.elta.co.il> 12001-10-14 Eli Zaretskii <eliz@is.elta.co.il>
2 2
3 * bindings.el (completion-ignored-extensions) [ms-dos, windows-nt]:
4 Add .ico, .pif, .lnk, .dll, .drv, .vxd, and .386.
5 Add .so to the Unix and GNU branch.
6
3 * international/latin-1.el: 7 * international/latin-1.el:
4 * international/latin-2.el: 8 * international/latin-2.el:
5 * international/latin-3.el: 9 * international/latin-3.el:
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'.")
421;; making it more likely you will get a unique match. 421;; making it more likely you will get a unique match.
422(setq completion-ignored-extensions 422(setq completion-ignored-extensions
423 (append 423 (append
424 (cond ((or (eq system-type 'ms-dos) (eq system-type 'windows-nt)) 424 (cond ((memq system-type '(ms-dos windows-nt))
425 '(".o" "~" ".bin" ".bak" ".obj" ".map" 425 '(".o" "~" ".bin" ".bak" ".obj" ".map" ".ico" ".pif" ".lnk"
426 ".a" ".ln" ".blg" ".bbl")) 426 ".a" ".ln" ".blg" ".bbl" ".dll" ".drv" ".vxd" ".386"))
427 ((eq system-type 'vax-vms) 427 ((eq system-type 'vax-vms)
428 '(".obj" ".exe" ".bin" ".lbin" ".sbin" 428 '(".obj" ".exe" ".bin" ".lbin" ".sbin"
429 ".brn" ".rnt" ".lni" ".lis" 429 ".brn" ".rnt" ".lni" ".lis"
430 ".olb" ".tlb" ".mlb" ".hlb")) 430 ".olb" ".tlb" ".mlb" ".hlb"))
431 (t 431 (t
432 '(".o" "~" ".bin" ".lbin" 432 '(".o" "~" ".bin" ".lbin" ".so"
433 ".a" ".ln" ".blg" ".bbl"))) 433 ".a" ".ln" ".blg" ".bbl")))
434 '(".elc" ".lof" 434 '(".elc" ".lof"
435 ".glo" ".idx" ".lot" 435 ".glo" ".idx" ".lot"