Function: array-copy-up

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

Signature

(array-copy-up &optional ARG)

Documentation

Copy the current field one array row up.

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

Key Bindings

Source Code

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