Function: array-copy-column-backward

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

Signature

(array-copy-column-backward &optional ARG)

Documentation

Copy the entire current column one column to the left.

If optional ARG is given, copy through ARG columns to the left.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/array.el.gz
(defun array-copy-column-backward (&optional arg)
  "Copy the entire current column one column to the left.
If optional ARG is given, copy through ARG columns to the left."
  (interactive "p")
  (array-copy-column-forward (- arg)))