Function: change-log-find-file

change-log-find-file is an interactive and byte-compiled function defined in add-log.el.gz.

Signature

(change-log-find-file)

Documentation

Visit the file for the change under point.

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-find-file ()
  "Visit the file for the change under point."
  (interactive)
  (let ((file (change-log-search-file-name (point))))
    (if (and file (file-exists-p file))
	(find-file file)
      (message "No such file or directory: %s" file))))