1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-31 20:02:42 +00:00

(completion-ignored-extensions):

Separate out the system-independent elements.
Add Texinfo index files.
This commit is contained in:
Richard M. Stallman 1996-12-29 18:59:24 +00:00
parent 02f21b813f
commit d34c1b05eb

View File

@ -103,19 +103,25 @@ is okay. See `mode-line-format'.")
;; are ignored in completion, ;; are ignored in completion,
;; making it more likely you will get a unique match. ;; making it more likely you will get a unique match.
(setq completion-ignored-extensions (setq completion-ignored-extensions
(cond ((or (eq system-type 'ms-dos) (eq system-type 'windows-nt)) (append
'(".o" ".elc" "~" ".bin" ".bak" ".obj" ".map" (cond ((or (eq system-type 'ms-dos) (eq system-type 'windows-nt))
".dvi" ".toc" ".log" ".aux" ".a" ".ln" '(".o" "~" ".bin" ".bak" ".obj" ".map"
".lof" ".blg" ".bbl" ".glo" ".idx" ".lot" ".fmt")) ".a" ".ln" ".blg" ".bbl"))
((eq system-type 'vax-vms) ((eq system-type 'vax-vms)
'(".obj" ".elc" ".exe" ".bin" ".lbin" ".sbin" '(".obj" ".exe" ".bin" ".lbin" ".sbin"
".dvi" ".toc" ".log" ".aux" ".brn" ".rnt" ".mem" ".lni" ".lis"
".lof" ".brn" ".rnt" ".mem" ".lni" ".lis" ".olb" ".tlb" ".mlb" ".hlb"))
".olb" ".tlb" ".mlb" ".hlb" ".glo" ".idx" ".lot" ".fmt")) (t
(t '(".o" "~" ".bin" ".lbin" ".fasl"
'(".o" ".elc" "~" ".bin" ".lbin" ".fasl" ".a" ".ln" ".blg" ".bbl")))
".dvi" ".toc" ".log" ".aux" ".a" ".ln" '(".elc" ".lof"
".lof" ".blg" ".bbl" ".glo" ".idx" ".lot" ".fmt")))) ".glo" ".idx" ".lot"
;; TeX-related
".dvi" ".fmt"
;; Texinfo-related
".toc" ".log" ".aux"
".cp" ".fn" ".ky" ".pg" ".tp" ".vr"
".cps" ".fns" ".kys" ".pgs" ".tps" ".vrs")))
(setq debug-ignored-errors (setq debug-ignored-errors
'(beginning-of-line beginning-of-buffer end-of-line '(beginning-of-line beginning-of-buffer end-of-line