Function: comint-match-partial-filename

comint-match-partial-filename is a byte-compiled function defined in comint.el.gz.

Signature

(comint-match-partial-filename)

Documentation

Return the unquoted&expanded filename at point, or nil if none is found.

Environment variables are substituted. See comint-word.

Source Code

;; Defined in /usr/src/emacs/lisp/comint.el.gz
(defun comint-match-partial-filename ()
  "Return the unquoted&expanded filename at point, or nil if none is found.
Environment variables are substituted.  See `comint-word'."
  (let ((filename (comint--match-partial-filename)))
    (and filename (comint--unquote-argument filename))))