Function: eieio-persistent-path-relative

eieio-persistent-path-relative is a byte-compiled function defined in eieio-base.el.gz.

Signature

(eieio-persistent-path-relative ARG &rest ARGS)

Implementations

(eieio-persistent-path-relative (THIS eieio-persistent) FILE) in `eieio-base.el'.

For object THIS, make absolute file name FILE relative.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/eieio-base.el.gz
(cl-defmethod eieio-persistent-path-relative ((this eieio-persistent) file)
  "For object THIS, make absolute file name FILE relative."
  (file-relative-name (expand-file-name file)
		      (file-name-directory (oref this file))))