Function: add-log--pseudo-changelog-buffer-name

add-log--pseudo-changelog-buffer-name is a byte-compiled function defined in add-log.el.gz.

Signature

(add-log--pseudo-changelog-buffer-name CHANGELOG-FILE-NAME)

Documentation

Compute a suitable name for a non-file visiting ChangeLog buffer.

CHANGELOG-FILE-NAME is the file name of the actual ChangeLog file if it were to exist.

Source Code

;; Defined in /usr/src/emacs/lisp/vc/add-log.el.gz
(defun add-log--pseudo-changelog-buffer-name (changelog-file-name)
  "Compute a suitable name for a non-file visiting ChangeLog buffer.
CHANGELOG-FILE-NAME is the file name of the actual ChangeLog file
if it were to exist."
  (format "*changes to %s*"
          (abbreviate-file-name
           (file-name-directory changelog-file-name))))