Function: xdg-runtime-dir
xdg-runtime-dir is a byte-compiled function defined in xdg.el.gz.
Signature
(xdg-runtime-dir)
Documentation
Return the value of $XDG_RUNTIME_DIR.
According to the XDG Base Directory Specification version
0.8 (8th May 2021):
"$XDG_RUNTIME_DIR defines the base directory relative to
which user-specific non-essential runtime files and other
file objects (such as sockets, named pipes, ...) should be
stored."
Source Code
;; Defined in /usr/src/emacs/lisp/xdg.el.gz
(defun xdg-runtime-dir ()
"Return the value of $XDG_RUNTIME_DIR.
According to the XDG Base Directory Specification version
0.8 (8th May 2021):
\"$XDG_RUNTIME_DIR defines the base directory relative to
which user-specific non-essential runtime files and other
file objects (such as sockets, named pipes, ...) should be
stored.\""
(getenv "XDG_RUNTIME_DIR"))