Function: array-previous-row
array-previous-row is an interactive and byte-compiled function
defined in array.el.gz.
Signature
(array-previous-row &optional ARG)
Documentation
Move up one array row, staying in the current array column.
If optional ARG is given, move up ARG array rows.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/array.el.gz
(defun array-previous-row (&optional arg)
"Move up one array row, staying in the current array column.
If optional ARG is given, move up ARG array rows."
(interactive "p")
(array-next-row (- arg)))