Variable: tramp-repository-version
tramp-repository-version is a variable defined in trampver.el.gz.
Value
nil
Documentation
The repository revision of the Tramp sources.
Source Code
;; Defined in /usr/src/emacs/lisp/net/trampver.el.gz
(defconst tramp-repository-version
(ignore-errors
;; Suppress message from `emacs-repository-get-version'. We must
;; also handle out-of-tree builds.
(let ((inhibit-message t)
(debug-on-error nil)
(dir (or (locate-dominating-file (locate-library "tramp") ".git")
source-directory)))
(and (stringp dir) (file-directory-p dir)
(executable-find "git")
(emacs-repository-get-version dir))))
"The repository revision of the Tramp sources.")