Mercurial > hg > xemacs-beta
comparison lisp/loaddefs.el @ 380:8626e4521993 r21-2-5
Import from CVS: tag r21-2-5
author | cvs |
---|---|
date | Mon, 13 Aug 2007 11:07:10 +0200 |
parents | c5d627a313b1 |
children | 2f8bb876ab1d |
comparison
equal
deleted
inserted
replaced
379:76b7d63099ad | 380:8626e4521993 |
---|---|
84 ;; Names in directory that end in one of these | 84 ;; Names in directory that end in one of these |
85 ;; are ignored in completion, | 85 ;; are ignored in completion, |
86 ;; making it more likely you will get a unique match. | 86 ;; making it more likely you will get a unique match. |
87 (setq completion-ignored-extensions | 87 (setq completion-ignored-extensions |
88 (mapcar 'purecopy | 88 (mapcar 'purecopy |
89 (if (eq system-type 'vax-vms) | 89 '(".o" ".elc" "~" ".bin" ".lbin" ".fasl" |
90 '(".obj" ".elc" ".exe" ".bin" ".lbin" ".sbin" | 90 ".dvi" ".toc" ".log" ".aux" ".a" ".ln" |
91 ".dvi" ".toc" ".log" ".aux" | 91 ".lof" ".blg" ".bbl" ".glo" ".idx" ".lot" ".fmt" |
92 ".lof" ".brn" ".rnt" ".mem" ".lni" ".lis" | 92 ".diff" ".oi" ".class"))) |
93 ".olb" ".tlb" ".mlb" ".hlb" ".glo" ".idx" ".lot" ".fmt") | |
94 '(".o" ".elc" "~" ".bin" ".lbin" ".fasl" | |
95 ".dvi" ".toc" ".log" ".aux" ".a" ".ln" | |
96 ".lof" ".blg" ".bbl" ".glo" ".idx" ".lot" ".fmt" | |
97 ".diff" ".oi" ".class")))) | |
98 | 93 |
99 | 94 |
100 ;; This needs to be redone better. -slb | 95 ;; This needs to be redone better. -slb |
101 ;(setq debug-ignored-errors | 96 ;(setq debug-ignored-errors |
102 ; '(beginning-of-line | 97 ; '(beginning-of-line |