Function: change-log-goto-source
change-log-goto-source is an interactive and byte-compiled function
defined in add-log.el.gz.
Signature
(change-log-goto-source)
Documentation
Go to source location of "change log tag" near point.
A change log tag is a symbol within a parenthesized,
comma-separated list. If no suitable tag can be found nearby,
try to visit the file for the change under point instead.
Probably introduced at or before Emacs version 23.1.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/vc/add-log.el.gz
(defun change-log-goto-source ()
"Go to source location of \"change log tag\" near `point'.
A change log tag is a symbol within a parenthesized,
comma-separated list. If no suitable tag can be found nearby,
try to visit the file for the change under `point' instead."
(interactive)
(let ((buffer (current-buffer)))
(change-log-goto-source-internal)
(next-error-found buffer (current-buffer))))