Mercurial > hg > xemacs-beta
comparison lisp/loaddefs.el @ 406:b8cc9ab3f761 r21-2-33
Import from CVS: tag r21-2-33
author | cvs |
---|---|
date | Mon, 13 Aug 2007 11:17:09 +0200 |
parents | 2f8bb876ab1d |
children | 697ef44129c6 |
comparison
equal
deleted
inserted
replaced
405:0e08f63c74d2 | 406:b8cc9ab3f761 |
---|---|
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 '(".o" ".elc" "~" ".bin" ".lbin" ".fasl" | 89 ;; this is way way way bogus. |
90 ".dvi" ".toc" ;".log" | 90 ;; completely wtf? |
91 ".aux" ".a" ".ln" | 91 ;; the only things that should be here are those that are |
92 ".lof" ".blg" ".bbl" ".glo" ".idx" ".lot" ".fmt" | 92 ;; (a) universally recognizable, and |
93 ".diff" ".oi" ".class"))) | 93 ;; (b) obvious backup files, or |
94 ;; (c) obvious binary files that are generated on a | |
95 ;; PER-SOURCE-FILE basis, so that they will actually | |
96 ;; cause annoyance. This includes .exe files, e.g. | |
97 ; '(".o" ".elc" "~" ".bin" ".lbin" ".fasl" | |
98 ; ".dvi" ".toc" ;".log" | |
99 ; ".aux" ".a" ".ln" | |
100 ; ".lof" ".blg" ".bbl" ".glo" ".idx" ".lot" ".fmt" | |
101 ; ".diff" ".oi" ".class"))) | |
102 '(".o" ".obj" ".elc" "~" | |
103 ".bin" ".lbin" ;; #### these are doubtful, esp. the latter. | |
104 ".dvi";; possibly doubtful, too. | |
105 ".class"))) | |
94 | 106 |
95 | 107 |
96 ;; This needs to be redone better. -slb | 108 ;; This needs to be redone better. -slb |
97 ;(setq debug-ignored-errors | 109 ;(setq debug-ignored-errors |
98 ; '(beginning-of-line | 110 ; '(beginning-of-line |