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. If this command needs to split the current window, it by default obeys the user options split-height-threshold and split-width-threshold, when it decides whether to split the window horizontally or vertically.

View in manual

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.
If this command needs to split the current window, it by default obeys
the user options `split-height-threshold' and `split-width-threshold',
when it decides whether to split the window horizontally or vertically."
  (interactive (if current-prefix-arg
		   (list current-prefix-arg
			 (prompt-for-change-log-name))))
  (add-change-log-entry whoami file-name t))