Function: array-copy-backward
array-copy-backward is an interactive and byte-compiled function
defined in array.el.gz.
Signature
(array-copy-backward &optional ARG)
Documentation
Copy the current field one array column to the left.
If optional ARG is given, copy through ARG array columns to the left.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/array.el.gz
(defun array-copy-backward (&optional arg)
"Copy the current field one array column to the left.
If optional ARG is given, copy through ARG array columns to the left."
(interactive "p")
(array-copy-forward (- arg)))