Function: log-edit-insert-filenames-without-changelog

log-edit-insert-filenames-without-changelog is an interactive and byte-compiled function defined in log-edit.el.gz.

Signature

(log-edit-insert-filenames-without-changelog)

Documentation

Insert the list of files that have no ChangeLog message.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/vc/log-edit.el.gz
(defun log-edit-insert-filenames-without-changelog ()
  "Insert the list of files that have no ChangeLog message."
  (interactive)
  (let ((files
	 (delq nil
	       (mapcar
		(lambda (file)
		  (unless (or (cdr-safe (log-edit-changelog-entries file))
			      (equal (file-name-nondirectory file) "ChangeLog"))
		    file))
		(log-edit-files)))))
    (when files
      (goto-char (point-max))
      (insert (mapconcat 'identity files ", ") ": "))))