Function: array-end-of-field
array-end-of-field is a byte-compiled function defined in array.el.gz.
Signature
(array-end-of-field &optional GO-THERE)
Documentation
Return the column of the end of the current array field.
If optional argument GO-THERE is non-nil, go there too.
Source Code
;; Defined in /usr/src/emacs/lisp/array.el.gz
(defun array-end-of-field (&optional go-there)
"Return the column of the end of the current array field.
If optional argument GO-THERE is non-nil, go there too."
;; Requires that array-buffer-column be current.
(let ((goal-column (+ (- array-buffer-column (% array-buffer-column array-field-width))
array-field-width)))
(if go-there
(move-to-column-untabify goal-column)
goal-column)))