aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1996-12-29 18:59:24 +0000
committerRichard M. Stallman1996-12-29 18:59:24 +0000
commitd34c1b05eb99917703bd464ef286de9bd15b8048 (patch)
tree9cd279860b80fef084051f99ab6979629e3577d7
parent02f21b813f41698f897bfd8796f78b99305c4d99 (diff)
downloademacs-d34c1b05eb99917703bd464ef286de9bd15b8048.tar.gz
emacs-d34c1b05eb99917703bd464ef286de9bd15b8048.zip
(completion-ignored-extensions):
Separate out the system-independent elements. Add Texinfo index files.
-rw-r--r--lisp/bindings.el32
1 files changed, 19 insertions, 13 deletions
diff --git a/lisp/bindings.el b/lisp/bindings.el
index cccaab1c5aa..3978afa58e7 100644
--- a/lisp/bindings.el
+++ b/lisp/bindings.el
@@ -103,19 +103,25 @@ is okay. See `mode-line-format'.")
103;; are ignored in completion, 103;; are ignored in completion,
104;; making it more likely you will get a unique match. 104;; making it more likely you will get a unique match.
105(setq completion-ignored-extensions 105(setq completion-ignored-extensions
106 (cond ((or (eq system-type 'ms-dos) (eq system-type 'windows-nt)) 106 (append
107 '(".o" ".elc" "~" ".bin" ".bak" ".obj" ".map" 107 (cond ((or (eq system-type 'ms-dos) (eq system-type 'windows-nt))
108 ".dvi" ".toc" ".log" ".aux" ".a" ".ln" 108 '(".o" "~" ".bin" ".bak" ".obj" ".map"
109 ".lof" ".blg" ".bbl" ".glo" ".idx" ".lot" ".fmt")) 109 ".a" ".ln" ".blg" ".bbl"))
110 ((eq system-type 'vax-vms) 110 ((eq system-type 'vax-vms)
111 '(".obj" ".elc" ".exe" ".bin" ".lbin" ".sbin" 111 '(".obj" ".exe" ".bin" ".lbin" ".sbin"
112 ".dvi" ".toc" ".log" ".aux" 112 ".brn" ".rnt" ".mem" ".lni" ".lis"
113 ".lof" ".brn" ".rnt" ".mem" ".lni" ".lis" 113 ".olb" ".tlb" ".mlb" ".hlb"))
114 ".olb" ".tlb" ".mlb" ".hlb" ".glo" ".idx" ".lot" ".fmt")) 114 (t
115 (t 115 '(".o" "~" ".bin" ".lbin" ".fasl"
116 '(".o" ".elc" "~" ".bin" ".lbin" ".fasl" 116 ".a" ".ln" ".blg" ".bbl")))
117 ".dvi" ".toc" ".log" ".aux" ".a" ".ln" 117 '(".elc" ".lof"
118 ".lof" ".blg" ".bbl" ".glo" ".idx" ".lot" ".fmt")))) 118 ".glo" ".idx" ".lot"
119 ;; TeX-related
120 ".dvi" ".fmt"
121 ;; Texinfo-related
122 ".toc" ".log" ".aux"
123 ".cp" ".fn" ".ky" ".pg" ".tp" ".vr"
124 ".cps" ".fns" ".kys" ".pgs" ".tps" ".vrs")))
119 125
120(setq debug-ignored-errors 126(setq debug-ignored-errors
121 '(beginning-of-line beginning-of-buffer end-of-line 127 '(beginning-of-line beginning-of-buffer end-of-line