Function: erc-beg-of-input-line
erc-beg-of-input-line is a byte-compiled function defined in
erc.el.gz.
Signature
(erc-beg-of-input-line)
Documentation
Return the value of point at the beginning of the input line.
Specifically, return the position of erc-insert-marker.
Source Code
;; Defined in /usr/src/emacs/lisp/erc/erc.el.gz
;;; Input area handling:
(defun erc-beg-of-input-line ()
"Return the value of `point' at the beginning of the input line.
Specifically, return the position of `erc-insert-marker'."
(or (and (boundp 'erc-insert-marker)
(markerp erc-insert-marker))
(error "erc-insert-marker has no value, please report a bug"))
(marker-position erc-insert-marker))