Function: array-copy-to-cell
array-copy-to-cell is a byte-compiled function defined in array.el.gz.
Signature
(array-copy-to-cell A-ROW A-COLUMN)
Documentation
Copy the current field into the cell at A-ROW, A-COLUMN.
Leave point at the beginning of the field.
Source Code
;; Defined in /usr/src/emacs/lisp/array.el.gz
(defun array-copy-to-cell (a-row a-column)
"Copy the current field into the cell at A-ROW, A-COLUMN.
Leave point at the beginning of the field."
;; Requires that array-copy-string be current.
(array-move-to-cell a-row a-column)
(array-update-buffer-position)
(delete-region (point) (save-excursion (array-end-of-field t) (point)))
(insert array-copy-string)
(move-to-column array-buffer-column))