Function: array-current-row

array-current-row is a byte-compiled function defined in array.el.gz.

Signature

(array-current-row)

Documentation

Return the array row of the field in which the cursor is located.

Source Code

;; Defined in /usr/src/emacs/lisp/array.el.gz
(defun array-current-row ()
  "Return the array row of the field in which the cursor is located."
  ;; Requires array-buffer-line and array-buffer-column to be current.
  (and (array-cursor-in-array-range)
       (1+ (floor array-buffer-line array-lines-per-row))))