emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r107515: * lisp/info.el (Info-insert-


From: Glenn Morris
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r107515: * lisp/info.el (Info-insert-dir): Also try "dir.gz".
Date: Mon, 05 Mar 2012 22:00:52 -0500
User-agent: Bazaar (2.3.1)

------------------------------------------------------------
revno: 107515
author: Thien-Thi Nguyen <address@hidden>
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Mon 2012-03-05 22:00:52 -0500
message:
  * lisp/info.el (Info-insert-dir): Also try "dir.gz".
  Ref: http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00005.html
modified:
  lisp/ChangeLog
  lisp/info.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2012-03-06 02:50:28 +0000
+++ b/lisp/ChangeLog    2012-03-06 03:00:52 +0000
@@ -1,3 +1,7 @@
+2012-03-06  Thien-Thi Nguyen  <address@hidden>
+
+       * info.el (Info-insert-dir): Also try "dir.gz".
+
 2012-03-06  Glenn Morris  <address@hidden>
 
        * files.el (dir-locals-find-file):

=== modified file 'lisp/info.el'
--- a/lisp/info.el      2012-01-19 07:21:25 +0000
+++ b/lisp/info.el      2012-03-06 03:00:52 +0000
@@ -1165,6 +1165,8 @@
                       (progn (setq file (expand-file-name "dir.info" truename))
                              (file-attributes file))
                       (progn (setq file (expand-file-name "DIR.INFO" truename))
+                             (file-attributes file))
+                      (progn (setq file (expand-file-name "dir.gz" truename))
                              (file-attributes file)))))
                (setq dirs-done
                      (cons truename


reply via email to

[Prev in Thread] Current Thread [Next in Thread]