]> git.eshelyaron.com Git - emacs.git/commitdiff
lisp/ido.el (ido-max-directory-size): Default to nil.
authorJuanma Barranquero <lekktu@gmail.com>
Sun, 30 Sep 2012 12:28:50 +0000 (14:28 +0200)
committerJuanma Barranquero <lekktu@gmail.com>
Sun, 30 Sep 2012 12:28:50 +0000 (14:28 +0200)
The current default is small for POSIX systems, and impractical
on Windows 7 now that lstat returns directory sizes for NTFS.

lisp/ChangeLog
lisp/ido.el

index d7b8163ae9e3e893db3890edfe284744804cc59a..255b892478499a60894e158cd1c6db7b69cc4bc0 100644 (file)
@@ -1,3 +1,9 @@
+2012-09-30  Juanma Barranquero  <lekktu@gmail.com>
+
+       * ido.el (ido-max-directory-size): Default to nil; the current
+       default is small for POSIX systems, and impractical on Windows 7
+       now that lstat returns directory sizes for NTFS.
+
 2012-09-30  Martin Rudalics  <rudalics@gmx.at>
 
        In buffer display functions handle window-height/window-width
index f511dbbf8aceb75b8d51a7288ea43c864c292d76..94818fe57b08f26b89379a60290cd3c960766857 100644 (file)
@@ -714,7 +714,7 @@ See also `ido-dir-file-cache' and `ido-save-directory-list-file'."
   :type 'integer
   :group 'ido)
 
-(defcustom ido-max-directory-size 30000
+(defcustom ido-max-directory-size nil
   "Maximum size (in bytes) for directories to use ido completion.
 If you enter a directory with a size larger than this size, ido will
 not provide the normal completion.  To show the completions, use C-a."