(completion--embedded-envvar-table, read-file-name-internal):
authorJuanma Barranquero <lekktu@gmail.com>
Sun, 13 Apr 2008 01:49:17 +0000 (01:49 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Sun, 13 Apr 2008 01:49:17 +0000 (01:49 +0000)
Fix typos in 2008-04-11 change.

lisp/ChangeLog
lisp/minibuffer.el

index d369eb8..c3cede9 100644 (file)
@@ -1,3 +1,11 @@
+2008-04-13  Juanma Barranquero  <lekktu@gmail.com>
+
+       * minibuffer.el (completion--embedded-envvar-table)
+       (read-file-name-internal): Fix typos in 2008-04-11 change.
+
+       * faces.el (read-face-name): Use `completion-table-in-turn',
+       not `complete-in-turn'.
+
 2008-04-13  Andreas Schwab  <schwab@suse.de>
 
        * progmodes/etags.el: Require 'cl when compiling.
@@ -19,8 +27,7 @@
 
 2008-04-12  Reiner Steib  <Reiner.Steib@gmx.de>
 
-       * emacs-lisp/copyright.el (copyright-update-directory): New
-       command.
+       * emacs-lisp/copyright.el (copyright-update-directory): New command.
 
        * ediff-wind.el (ediff-split-window-function)
        (ediff-merge-split-window-function): Improve custom type.
@@ -39,8 +46,8 @@
        Mark obsolete name as risky too.
 
        * calendar/calendar.el (calendar-faces): New custom group.
-       (calendar-today, diary, holiday): Doc fix.  Move to calendar-faces
-       group.
+       (calendar-today, diary, holiday): Doc fix.
+       Move to calendar-faces group.
        * calendar/diary-lib.el (diary-face, diary-anniversary, diary-time)
        (diary-button): Doc fix.  Move to calendar-faces group.
 
index 26cbfc1..f7e14b6 100644 (file)
@@ -559,7 +559,7 @@ during running `completion-setup-hook'."
                               "$\\([[:alnum:]_]*\\|{\\([^}]*\\)\\)\\'")
                       string)
     (let* ((beg (or (match-beginning 2) (match-beginning 1)))
-           (table (completion-make-envvar-table))
+           (table (completion--make-envvar-table))
            (prefix (substring string 0 beg)))
       (if (eq (aref string (1- beg)) ?{)
           (setq table (apply-partially 'completion-table-with-terminator
@@ -567,7 +567,7 @@ during running `completion-setup-hook'."
       (completion-table-with-context prefix table
                                      (substring string beg)
                                      pred action))))
-          
+
 (defun completion--file-name-table (string dir action)
   "Internal subroutine for read-file-name.  Do not call this."
   (setq dir (expand-file-name dir))
@@ -580,7 +580,7 @@ during running `completion-setup-hook'."
            (specdir (file-name-directory str))
            (realdir (if specdir (expand-file-name specdir dir)
                       (file-name-as-directory dir))))
-      
+
       (cond
        ((null action)
         (let ((comp (file-name-completion name realdir
@@ -595,7 +595,7 @@ during running `completion-setup-hook'."
               ;; If there's no real completion, but substitute-in-file-name
               ;; changed the string, then return the new string.
               str))))
-       
+
        ((eq action t)
         (let ((all (file-name-all-completions name realdir)))
           (if (memq read-file-name-predicate '(nil file-exists-p))
@@ -621,8 +621,8 @@ during running `completion-setup-hook'."
           (funcall (or read-file-name-predicate 'file-exists-p) str)))))))
 
 (defalias 'read-file-name-internal
-  (completion-table-in-turn 'completion-embedded-envvar-table
-                      'completion-file-name-table)
+  (completion-table-in-turn 'completion--embedded-envvar-table
+                      'completion--file-name-table)
   "Internal subroutine for `read-file-name'.  Do not call this.")
 
 (provide 'minibuffer)