Function: array-copy-row-up

array-copy-row-up is an interactive and byte-compiled function defined in array.el.gz.

Signature

(array-copy-row-up &optional ARG)

Documentation

Copy the entire current array row into the row above.

If optional ARG is given, copy through ARG rows up.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/array.el.gz
(defun array-copy-row-up (&optional arg)
  "Copy the entire current array row into the row above.
If optional ARG is given, copy through ARG rows up."
  (interactive "p")
  (array-copy-row-down (- arg)))