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