aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2012-09-30 14:28:50 +0200
committerJuanma Barranquero2012-09-30 14:28:50 +0200
commitee41332bd8a529ee7ce96b4d19d350f6fcc5248c (patch)
tree2c32aae7f2c3187311423fce665bd5cce30cea53
parent427730ebdec426ceaae9ab04c9b0951ac8bbb923 (diff)
downloademacs-ee41332bd8a529ee7ce96b4d19d350f6fcc5248c.tar.gz
emacs-ee41332bd8a529ee7ce96b4d19d350f6fcc5248c.zip
lisp/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.
-rw-r--r--lisp/ChangeLog6
-rw-r--r--lisp/ido.el2
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index d7b8163ae9e..255b8924784 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,9 @@
12012-09-30 Juanma Barranquero <lekktu@gmail.com>
2
3 * ido.el (ido-max-directory-size): Default to nil; the current
4 default is small for POSIX systems, and impractical on Windows 7
5 now that lstat returns directory sizes for NTFS.
6
12012-09-30 Martin Rudalics <rudalics@gmx.at> 72012-09-30 Martin Rudalics <rudalics@gmx.at>
2 8
3 In buffer display functions handle window-height/window-width 9 In buffer display functions handle window-height/window-width
diff --git a/lisp/ido.el b/lisp/ido.el
index f511dbbf8ac..94818fe57b0 100644
--- a/lisp/ido.el
+++ b/lisp/ido.el
@@ -714,7 +714,7 @@ See also `ido-dir-file-cache' and `ido-save-directory-list-file'."
714 :type 'integer 714 :type 'integer
715 :group 'ido) 715 :group 'ido)
716 716
717(defcustom ido-max-directory-size 30000 717(defcustom ido-max-directory-size nil
718 "Maximum size (in bytes) for directories to use ido completion. 718 "Maximum size (in bytes) for directories to use ido completion.
719If you enter a directory with a size larger than this size, ido will 719If you enter a directory with a size larger than this size, ido will
720not provide the normal completion. To show the completions, use C-a." 720not provide the normal completion. To show the completions, use C-a."