]> git.eshelyaron.com Git - emacs.git/commitdiff
(PC-do-completion): Undo the addition of implicit
authorStefan Monnier <monnier@iro.umontreal.ca>
Mon, 22 May 2006 18:09:40 +0000 (18:09 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Mon, 22 May 2006 18:09:40 +0000 (18:09 +0000)
wildcards if they did not lead to finding any match.
(read-file-name-internal): Don't add the final > if the completion is
not finished.

lisp/ChangeLog
lisp/complete.el

index 928268111677dae0c960702b9b10d1c00145a54d..a763c61124a82973c718e88dc95e05a34502b32c 100644 (file)
@@ -1,7 +1,14 @@
+2006-05-22  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * complete.el (PC-do-completion): Undo the addition of implicit
+       wildcards if they did not lead to finding any match.
+       (read-file-name-internal): Don't add the final > if the completion is
+       not finished.
+
 2006-05-22  Reiner Steib  <Reiner.Steib@gmx.de>
 
-       * textmodes/bibtex.el (bibtex-maintain-sorted-entries): Quote
-       safe-local-variable predicate.
+       * textmodes/bibtex.el (bibtex-maintain-sorted-entries):
+       Quote safe-local-variable predicate.
 
 2006-05-22  Thien-Thi Nguyen  <ttn@gnu.org>
 
 
 2006-05-21  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
 
-       * textmodes/bibtex.el (bibtex-maintain-sorted-entries): Mark as
-       safe.
+       * textmodes/bibtex.el (bibtex-maintain-sorted-entries): Mark as safe.
 
        * progmodes/make-mode.el (makefile-special-targets-list)
        (makefile-macro-table, makefile-target-table): Mark as risky.
        (makefile-query-one-target-method): Make this the alias for the
        following variable.
-       (makefile-query-one-target-method-function): Make this the real
-       name.
+       (makefile-query-one-target-method-function): Make this the real name.
 
        * textmodes/artist.el (artist-text-renderer): Make this the alias
        for the following variable.
index 6620db860c319e7a898b043b2a546e79b25e83ce..d0e3fbe8ddf1616a15349f7dcc60c95a87e0e0b0 100644 (file)
@@ -369,7 +369,7 @@ of `minibuffer-completion-table' and the minibuffer contents.")
         (str (buffer-substring beg end))
         (incname (and filename (string-match "<\\([^\"<>]*\\)>?$" str)))
         (ambig nil)
-        basestr
+        basestr origstr
         env-on
         regex
         p offset
@@ -415,7 +415,7 @@ of `minibuffer-completion-table' and the minibuffer contents.")
                                    (file-name-nondirectory dir))
                                   "*/" file))
                (setq dir (file-name-directory dir)))
-             (setq str (concat dir file))))
+             (setq origstr str str (concat dir file))))
 
       ;; Look for wildcard expansions in directory name
       (and filename
@@ -443,7 +443,14 @@ of `minibuffer-completion-table' and the minibuffer contents.")
                     (setq str (concat dir (file-name-nondirectory str)))
                     (insert str)
                     (setq end (+ beg (length str)))))
-              (setq filename nil table nil pred nil))))
+              (if origstr
+                   ;; If the wildcards were introduced by us, it's possible
+                   ;; that read-file-name-internal (especially our
+                   ;; PC-include-file advice) can still find matches for the
+                   ;; original string even if we couldn't, so remove the
+                   ;; added wildcards.
+                   (setq str origstr)
+                (setq filename nil table nil pred nil)))))
 
       ;; Strip directory name if appropriate
       (if filename
@@ -943,10 +950,11 @@ absolute rather than relative to some directory on the SEARCH-PATH."
   (if (string-match "<\\([^\"<>]*\\)>?\\'" (ad-get-arg 0))
       (let* ((string (ad-get-arg 0))
              (action (ad-get-arg 2))
-             (name (substring string (match-beginning 1) (match-end 1)))
+             (name (match-string 1 string))
             (str2 (substring string (match-beginning 0)))
             (completion-table
-             (mapcar (lambda (x) (format "<%s>" x))
+             (mapcar (lambda (x)
+                       (format (if (string-match "/\\'" x) "<%s" "<%s>") x))
                      (PC-include-file-all-completions
                       name (PC-include-file-path)))))
         (setq ad-return-value