Mercurial > hg > xemacs-beta
comparison lisp/loaddefs.el @ 444:576fb035e263 r21-2-37
Import from CVS: tag r21-2-37
author | cvs |
---|---|
date | Mon, 13 Aug 2007 11:36:19 +0200 |
parents | abe6d1db359e |
children | 5aa1854ad537 |
comparison
equal
deleted
inserted
replaced
443:a8296e22da4e | 444:576fb035e263 |
---|---|
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 (mapcar 'purecopy | |
89 ;; this is way way way bogus. | 88 ;; this is way way way bogus. |
90 ;; completely wtf? | 89 ;; completely wtf? |
91 ;; the only things that should be here are those that are | 90 ;; the only things that should be here are those that are |
92 ;; (a) universally recognizable, and | 91 ;; (a) universally recognizable, and |
93 ;; (b) obvious backup files, or | 92 ;; (b) obvious backup files, or |
97 ; '(".o" ".elc" "~" ".bin" ".lbin" ".fasl" | 96 ; '(".o" ".elc" "~" ".bin" ".lbin" ".fasl" |
98 ; ".dvi" ".toc" ;".log" | 97 ; ".dvi" ".toc" ;".log" |
99 ; ".aux" ".a" ".ln" | 98 ; ".aux" ".a" ".ln" |
100 ; ".lof" ".blg" ".bbl" ".glo" ".idx" ".lot" ".fmt" | 99 ; ".lof" ".blg" ".bbl" ".glo" ".idx" ".lot" ".fmt" |
101 ; ".diff" ".oi" ".class"))) | 100 ; ".diff" ".oi" ".class"))) |
102 '(".o" ".obj" ".elc" "~" | 101 '(".o" ".obj" ".elc" "~" |
103 ".bin" ".lbin" ;; #### these are doubtful, esp. the latter. | 102 ".bin" ".lbin" ;; #### these are doubtful, esp. the latter. |
104 ".dvi";; possibly doubtful, too. | 103 ".dvi";; possibly doubtful, too. |
105 ".class"))) | 104 ".class")) |
106 | 105 |
107 | 106 |
108 ;; This needs to be redone better. -slb | 107 ;; This needs to be redone better. -slb |
109 ;(setq debug-ignored-errors | 108 ;(setq debug-ignored-errors |
110 ; '(beginning-of-line | 109 ; '(beginning-of-line |