Function: 2C-newline

2C-newline is an interactive and byte-compiled function defined in two-column.el.gz.

Signature

(2C-newline ARG)

Documentation

Insert ARG newlines in both buffers.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/two-column.el.gz
(defun 2C-newline (arg)
  "Insert ARG newlines in both buffers."
  (interactive "P")
  (save-window-excursion
    (2C-associated-buffer)
    (newline arg))
  (newline arg))