Function: f-same-p
f-same-p is a byte-compiled function defined in f.el.
Signature
(f-same-p PATH-A PATH-B)
Documentation
Return t if PATH-A and PATH-B are references to same file.
Aliases
Source Code
;; Defined in ~/.emacs.d/elpa/f-20241003.1131/f.el
(defun f-same-p (path-a path-b)
"Return t if PATH-A and PATH-B are references to same file."
(equal
(f-canonical (directory-file-name (f-expand path-a)))
(f-canonical (directory-file-name (f-expand path-b)))))