Function: array-what-position

array-what-position is an interactive and byte-compiled function defined in array.el.gz.

Signature

(array-what-position)

Documentation

Display the row and column in which the cursor is positioned.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/array.el.gz
;;; Information commands.

(defun array-what-position ()
  "Display the row and column in which the cursor is positioned."
  (interactive)
  (let ((array-buffer-line (array-current-line))
	(array-buffer-column (current-column)))
    (message "Array row: %s  Array column: %s"
	     (prin1-to-string (array-current-row))
	     (prin1-to-string (array-current-column)))))