Variable: add-log-file-name-function

add-log-file-name-function is a customizable variable defined in add-log.el.gz.

Value

nil

Documentation

If non-nil, function to call to identify the filename for a ChangeLog entry.

This function is called with one argument, the value of variable buffer-file-name(var)/buffer-file-name(fun) in that buffer. If this is nil, the default is to use the file's name relative to the directory of the change log file.

Source Code

;; Defined in /usr/src/emacs/lisp/vc/add-log.el.gz
(defcustom add-log-file-name-function nil
  "If non-nil, function to call to identify the filename for a ChangeLog entry.
This function is called with one argument, the value of variable
`buffer-file-name' in that buffer.  If this is nil, the default is to
use the file's name relative to the directory of the change log file."
  :type '(choice (const nil) function))