Function: log-view-current-tag

log-view-current-tag is a byte-compiled function defined in log-view.el.gz.

Signature

(log-view-current-tag &optional POS)

Documentation

Return the revision tag (a string) of the Log View entry at POS.

if POS is omitted or nil, it defaults to point.

Source Code

;; Defined in /usr/src/emacs/lisp/vc/log-view.el.gz
(defun log-view-current-tag (&optional pos)
  "Return the revision tag (a string) of the Log View entry at POS.
if POS is omitted or nil, it defaults to point."
  (cadr (log-view-current-entry pos)))