Function: file-notify--watch-absolute-filename

file-notify--watch-absolute-filename is a byte-compiled function defined in filenotify.el.gz.

Signature

(file-notify--watch-absolute-filename WATCH)

Documentation

Return the absolute filename observed by WATCH.

Source Code

;; Defined in /usr/src/emacs/lisp/filenotify.el.gz
(defun file-notify--watch-absolute-filename (watch)
  "Return the absolute filename observed by WATCH."
  (if (file-notify--watch-filename watch)
      (expand-file-name
       (file-notify--watch-filename watch)
       (file-notify--watch-directory watch))
    (file-notify--watch-directory watch)))