]> git.eshelyaron.com Git - emacs.git/commitdiff
(completion-ignored-extensions):
authorThien-Thi Nguyen <ttn@gnuvola.org>
Tue, 22 Mar 2005 17:05:29 +0000 (17:05 +0000)
committerThien-Thi Nguyen <ttn@gnuvola.org>
Tue, 22 Mar 2005 17:05:29 +0000 (17:05 +0000)
Remove ".lis" for `vax-vms', and ".log" in general.

lisp/ChangeLog
lisp/bindings.el

index 19ee85f30827e4e2ebeac9ff39c9193a3cc27580..cef14a564bbd96066202cd337377e209eebc8962 100644 (file)
@@ -1,3 +1,8 @@
+2005-03-22  Thien-Thi Nguyen  <ttn@gnu.org>
+
+       * bindings.el (completion-ignored-extensions):
+       Remove ".lis" for `vax-vms', and ".log" in general.
+
 2005-03-21  Thien-Thi Nguyen  <ttn@gnu.org>
 
        * progmodes/dcl-mode.el (dcl-font-lock-keywords):
index 45a6d57c0374aa8e983197181793bf0367d2654f..5dff4f84a85102754ae150b7ee59a8594430b146 100644 (file)
@@ -426,7 +426,7 @@ is okay.  See `mode-line-format'.")
                ".a" ".ln" ".blg" ".bbl"))
             ((eq system-type 'vax-vms)
              '(".obj" ".exe" ".bin" ".lbin" ".sbin"
-               ".brn" ".rnt" ".mem" ".lni" ".lis"
+               ".brn" ".rnt" ".mem" ".lni"
                ".olb" ".tlb" ".mlb" ".hlb"))
             (t
              '(".o" "~" ".bin" ".lbin" ".fasl" ".ufsl"
@@ -444,7 +444,7 @@ is okay.  See `mode-line-format'.")
         ;; Libtool
         ".lo" ".la"
         ;; Texinfo-related
-        ".toc" ".log" ".aux"
+        ".toc" ".aux"
         ".cp" ".fn" ".ky" ".pg" ".tp" ".vr"
         ".cps" ".fns" ".kys" ".pgs" ".tps" ".vrs")))