Function: forms--get-record
forms--get-record is a byte-compiled function defined in forms.el.gz.
Signature
(forms--get-record)
Documentation
Fetch the current record from the file buffer.
Source Code
;; Defined in /usr/src/emacs/lisp/forms.el.gz
(defun forms--get-record ()
"Fetch the current record from the file buffer."
;; This function is executed in the context of the `forms--file-buffer'.
(or (bolp)
(beginning-of-line nil))
(let ((here (point)))
(prog2
(end-of-line)
(buffer-substring-no-properties here (point))
(goto-char here))))