Function: array-field-string
array-field-string is a byte-compiled function defined in array.el.gz.
Signature
(array-field-string)
Documentation
Return the field string at the current cursor location.
Source Code
;; Defined in /usr/src/emacs/lisp/array.el.gz
;;; Internal copying functions.
(defun array-field-string ()
"Return the field string at the current cursor location."
;; Requires that array-buffer-column be current.
(buffer-substring
(save-excursion (array-beginning-of-field t) (point))
(save-excursion (array-end-of-field t) (point))))