Function: file-notify--expand-file-name
file-notify--expand-file-name is a byte-compiled function defined in
filenotify.el.gz.
Signature
(file-notify--expand-file-name WATCH FILE)
Documentation
Full file name of FILE reported for WATCH.
Source Code
;; Defined in /usr/src/emacs/lisp/filenotify.el.gz
(defun file-notify--expand-file-name (watch file)
"Full file name of FILE reported for WATCH."
(directory-file-name
(if (file-name-absolute-p file)
(concat (file-remote-p (file-notify--watch-directory watch)) file)
(expand-file-name file (file-notify--watch-directory watch)))))