emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/trunk r103337: * lisp/files.el (cd): Make c


From: Stefan Monnier
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r103337: * lisp/files.el (cd): Make completion obey cd-path.
Date: Fri, 18 Feb 2011 12:18:16 -0500
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 103337
committer: Stefan Monnier <address@hidden>
branch nick: trunk
timestamp: Fri 2011-02-18 12:18:16 -0500
message:
  * lisp/files.el (cd): Make completion obey cd-path.
  * lread.c (Qdir_ok): New constant.
  (syms_of_lread): Initialize it.
  (openp): Don't ignore directories if the predicate returns dir-ok.
modified:
  lisp/ChangeLog
  lisp/files.el
  src/ChangeLog
  src/lread.c
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2011-02-18 08:42:21 +0000
+++ b/lisp/ChangeLog    2011-02-18 17:18:16 +0000
@@ -1,3 +1,7 @@
+2011-02-18  Stefan Monnier  <address@hidden>
+
+       * files.el (cd): Make completion obey cd-path (bug#7924).
+
 2011-02-18  Glenn Morris  <address@hidden>
 
        * progmodes/prolog.el: Don't require compile when compiling.

=== modified file 'lisp/files.el'
--- a/lisp/files.el     2011-02-12 23:40:43 +0000
+++ b/lisp/files.el     2011-02-18 17:18:16 +0000
@@ -681,26 +681,37 @@
 `path-separator') when resolving a relative directory name.
 The path separator is colon in GNU and GNU-like systems."
   (interactive
-   (list (read-directory-name "Change default directory: "
-                        default-directory default-directory
-                        (and (member cd-path '(nil ("./")))
-                             (null (getenv "CDPATH"))))))
-  (if (file-name-absolute-p dir)
-      (cd-absolute (expand-file-name dir))
-    (if (null cd-path)
-       (let ((trypath (parse-colon-path (getenv "CDPATH"))))
-         (setq cd-path (or trypath (list "./")))))
-    (if (not (catch 'found
-              (mapc
-               (function (lambda (x)
-                           (let ((f (expand-file-name (concat x dir))))
-                             (if (file-directory-p f)
-                                 (progn
-                                   (cd-absolute f)
-                                   (throw 'found t))))))
-               cd-path)
-              nil))
-       (error "No such directory found via CDPATH environment variable"))))
+   (list
+    ;; FIXME: There's a subtle bug in the completion below.  Seems linked
+    ;; to a fundamental difficulty of implementing `predicate' correctly.
+    ;; The manifestation is that TAB may list non-directories in the case where
+    ;; those files also correspond to valid directories (if your cd-path is (A/
+    ;; B/) and you have A/a a file and B/a a directory, then both `a' and `a/'
+    ;; will be listed as valid completions).
+    ;; This is because `a' (listed because of A/a) is indeed a valid choice
+    ;; (which will lead to the use of B/a).
+    (minibuffer-with-setup-hook
+        (lambda ()
+          (setq minibuffer-completion-table
+                (apply-partially #'locate-file-completion-table
+                                 cd-path nil))
+          (setq minibuffer-completion-predicate
+                (lambda (dir)
+                  (locate-file dir cd-path nil
+                               (lambda (f) (and (file-directory-p f) 
'dir-ok))))))
+      (unless cd-path
+        (setq cd-path (or (parse-colon-path (getenv "CDPATH"))
+                          (list "./"))))
+      (read-directory-name "Change default directory: "
+                           default-directory default-directory
+                           t))))
+  (unless cd-path
+    (setq cd-path (or (parse-colon-path (getenv "CDPATH"))
+                      (list "./"))))
+  (cd-absolute
+   (or (locate-file dir cd-path nil
+                    (lambda (f) (and (file-directory-p f) 'dir-ok)))
+       (error "No such directory found via CDPATH environment variable"))))
 
 (defun load-file (file)
   "Load the Lisp file named FILE."
@@ -720,9 +731,12 @@
 file name when searching.  If SUFFIXES is nil, it is equivalent to '(\"\").
 Use '(\"/\") to disable PATH search, but still try the suffixes in SUFFIXES.
 If non-nil, PREDICATE is used instead of `file-readable-p'.
+
+This function will normally skip directories, so if you want it to find
+directories, make sure the PREDICATE function returns `dir-ok' for them.
+
 PREDICATE can also be an integer to pass to the `access' system call,
 in which case file-name handlers are ignored.  This usage is deprecated.
-
 For compatibility, PREDICATE can also be one of the symbols
 `executable', `readable', `writable', or `exists', or a list of
 one or more of those symbols."

=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2011-02-18 15:11:10 +0000
+++ b/src/ChangeLog     2011-02-18 17:18:16 +0000
@@ -1,3 +1,9 @@
+2011-02-18  Stefan Monnier  <address@hidden>
+
+       * lread.c (Qdir_ok): New constant.
+       (syms_of_lread): Initialize it.
+       (openp): Don't ignore directories if the predicate returns dir-ok.
+
 2011-02-18  Eli Zaretskii  <address@hidden>
 
        * xdisp.c (display_line): Fix the change made for bug#7939.

=== modified file 'src/lread.c'
--- a/src/lread.c       2011-02-16 15:02:50 +0000
+++ b/src/lread.c       2011-02-18 17:18:16 +0000
@@ -1250,7 +1250,9 @@
 file name when searching.
 If non-nil, PREDICATE is used instead of `file-readable-p'.
 PREDICATE can also be an integer to pass to the access(2) function,
-in which case file-name-handlers are ignored.  */)
+in which case file-name-handlers are ignored.
+This function will normally skip directories, so if you want it to find
+directories, make sure the PREDICATE function returns `dir-ok' for them.  */)
   (Lisp_Object filename, Lisp_Object path, Lisp_Object suffixes, Lisp_Object 
predicate)
 {
   Lisp_Object file;
@@ -1260,6 +1262,7 @@
   return file;
 }
 
+static Lisp_Object Qdir_ok;
 
 /* Search for a file whose name is STR, looking in directories
    in the Lisp list PATH, and trying suffixes from SUFFIX.
@@ -1377,9 +1380,12 @@
              if (NILP (predicate))
                exists = !NILP (Ffile_readable_p (string));
              else
-               exists = !NILP (call1 (predicate, string));
-             if (exists && !NILP (Ffile_directory_p (string)))
-               exists = 0;
+               {
+                 Lisp_Object tmp = call1 (predicate, string);
+                 exists = !NILP (tmp)
+                   && (EQ (tmp, Qdir_ok)
+                       || !NILP (Ffile_directory_p (string)));
+               }
 
              if (exists)
                {
@@ -4377,6 +4383,9 @@
   Qfile_truename = intern_c_string ("file-truename");
   staticpro (&Qfile_truename) ;
 
+  Qdir_ok = intern_c_string ("dir-ok");
+  staticpro (&Qdir_ok);
+  
   Qdo_after_load_evaluation = intern_c_string ("do-after-load-evaluation");
   staticpro (&Qdo_after_load_evaluation) ;
 


reply via email to

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