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)
	  (dir (or (locate-dominating-file (locate-library "tramp") ".git")
		   source-directory))
	  debug-on-error)
      (and (stringp dir) (file-directory-p dir)
	   (executable-find "git")
	   (emacs-repository-get-version dir))))
  "The repository revision of the Tramp sources.")