diff 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
line wrap: on
line diff
--- a/lisp/loaddefs.el	Mon Aug 13 11:44:39 2007 +0200
+++ b/lisp/loaddefs.el	Mon Aug 13 11:45:51 2007 +0200
@@ -85,14 +85,15 @@
 ;; are ignored in completion,
 ;; making it more likely you will get a unique match.
 (setq completion-ignored-extensions
-	      ;; this is way way way bogus.
-	      ;; completely wtf?
-	      ;; the only things that should be here are those that are
-	      ;; (a) universally recognizable, and
-	      ;; (b) obvious backup files, or
-	      ;; (c) obvious binary files that are generated on a
-	      ;;     PER-SOURCE-FILE basis, so that they will actually
-	      ;;     cause annoyance.  This includes .exe files, e.g.
+      ;; this is way way way bogus.
+      ;; completely wtf?
+      ;; the only things that should be here are those that are
+      ;; (a) universally recognizable, and
+      ;; (b) obvious backup files, or
+      ;; (c) obvious binary files that are generated on a
+      ;;     PER-SOURCE-FILE basis, so that they will actually
+      ;;     cause annoyance.  This excludes executables (.exe, .com)
+      ;;     and libraries (.a, .lib, .dll).
 ;	      '(".o" ".elc" "~" ".bin" ".lbin" ".fasl"
 ;		".dvi" ".toc" ;".log"
 ;		".aux" ".a" ".ln"
@@ -100,7 +101,7 @@
 ;		".diff" ".oi" ".class")))
       '(".o" ".obj" ".elc" "~"
 	".bin" ".lbin" ;; #### these are doubtful, esp. the latter.
-	".dvi";; possibly doubtful, too.
+	".dvi" ;; possibly doubtful, too.
 	".class"))