Function: array-update-array-position

array-update-array-position is a byte-compiled function defined in array.el.gz.

Signature

(array-update-array-position &optional A-ROW A-COLUMN)

Documentation

Set array-row and array-column to their current values.

Set them to the optional arguments A-ROW and A-COLUMN if those are supplied.

Source Code

;; Defined in /usr/src/emacs/lisp/array.el.gz
(defun array-update-array-position (&optional a-row a-column)
  "Set `array-row' and `array-column' to their current values.
Set them to the optional arguments A-ROW and A-COLUMN if those are supplied."
  ;; Requires that array-buffer-line and array-buffer-column be current.
  (setq array-row (or a-row (array-current-row))
	array-column (or a-column (array-current-column))))