diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2012-10-01 04:45:25 +0200 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2012-10-01 04:45:25 +0200 |
commit | ea9a35630ab737fac2f56b43d38b47e186f82379 (patch) | |
tree | d19534a3d4b42a5b0042baf59a40419e605ae3ed /lisp/ido.el | |
parent | 6e6c9cd2e916757534bca94f6dadf99d368bda25 (diff) | |
download | emacs-ea9a35630ab737fac2f56b43d38b47e186f82379.tar.gz |
*** empty log message ***
Diffstat (limited to 'lisp/ido.el')
-rw-r--r-- | lisp/ido.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/ido.el b/lisp/ido.el index 4de4618ef46..70245800121 100644 --- a/lisp/ido.el +++ b/lisp/ido.el @@ -1720,7 +1720,7 @@ This function also adds a hook to the minibuffer." (ido-final-slash dir) (not (ido-is-unc-host dir)) (file-directory-p dir) - (> (nth 7 (file-attributes dir)) ido-max-directory-size)))) + (> (nth 7 (file-attributes (file-truename dir))) ido-max-directory-size)))) (defun ido-set-current-directory (dir &optional subdir no-merge) ;; Set ido's current directory to DIR or DIR/SUBDIR |