Function: completion--file-name-table

completion--file-name-table is a byte-compiled function defined in minibuffer.el.gz.

Signature

(completion--file-name-table ARG1 ARG2 ARG3)

Documentation

Internal subroutine for read-file-name. Do not call this.

This is a completion table for file names, like completion-file-name-table except that it passes the file name through substitute-in-file-name.

Source Code

;; Defined in /usr/src/emacs/lisp/minibuffer.el.gz
(defalias 'completion--file-name-table
  (completion-table-with-quoting #'completion-file-name-table
                                 #'substitute-in-file-name
                                 #'completion--sifn-requote)
  "Internal subroutine for `read-file-name'.  Do not call this.
This is a completion table for file names, like `completion-file-name-table'
except that it passes the file name through `substitute-in-file-name'.")