Function: add-change-log-entry-other-window

add-change-log-entry-other-window is an autoloaded, interactive and byte-compiled function defined in add-log.el.gz.

Signature

(add-change-log-entry-other-window &optional WHOAMI FILE-NAME)

Documentation

Find change log file in other window and add entry and item.

This is just like add-change-log-entry except that it displays the change log file in another window.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/vc/add-log.el.gz
;;;###autoload
(defun add-change-log-entry-other-window (&optional whoami file-name)
  "Find change log file in other window and add entry and item.
This is just like `add-change-log-entry' except that it displays
the change log file in another window."
  (interactive (if current-prefix-arg
		   (list current-prefix-arg
			 (prompt-for-change-log-name))))
  (add-change-log-entry whoami file-name t))