diff options
author | Glenn Morris <rgm@gnu.org> | 2012-10-05 00:38:05 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2012-10-05 00:38:05 -0700 |
commit | e8757f091a502b858912a4c267210e009227d6e6 (patch) | |
tree | b8d9354bebd57d6d96c0bb2196f1119bd82c2943 /lisp/ido.el | |
parent | 735135f9bc3c01b91ffef7c418dd9281bc347ab7 (diff) | |
parent | d259be38357793eb743ed2813d6f72a3d7728624 (diff) | |
download | emacs-e8757f091a502b858912a4c267210e009227d6e6.tar.gz |
Merge from emacs-24; up to 2012-05-08T14:11:47Z!monnier@iro.umontreal.ca
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 ffa2604d4fb..4ab183b3207 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 |