Function: log-edit-show-files
log-edit-show-files is an interactive and byte-compiled function
defined in log-edit.el.gz.
Signature
(log-edit-show-files)
Documentation
Show the list of files to be committed.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/vc/log-edit.el.gz
(defun log-edit-show-files ()
"Show the list of files to be committed."
(interactive)
(let* ((files (log-edit-files))
(buf (get-buffer-create log-edit-files-buf)))
(with-current-buffer buf
(log-edit-hide-buf buf 'all)
(setq buffer-read-only nil)
(erase-buffer)
(cvs-insert-strings files)
(special-mode)
(goto-char (point-min))
(display-buffer buf '((display-buffer-below-selected)
(dedicated . t)
(window-height . shrink-window-if-larger-than-buffer)
(inhibit-same-window . t)
(reusable-frames . nil)
(inhibit-switch-frame . t))))))