Function: array-backward-column

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

Signature

(array-backward-column &optional ARG)

Documentation

Move backward one field, staying in the current array row.

If optional ARG is given, move backward ARG array columns. If necessary, keep the cursor in the window by scrolling right or left.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/array.el.gz
(defun array-backward-column (&optional arg)
  "Move backward one field, staying in the current array row.
If optional ARG is given, move backward ARG array columns.
If necessary, keep the cursor in the window by scrolling right or left."
  (interactive "p")
  (array-forward-column (- arg)))