Function: erc--get-inserted-msg-end
erc--get-inserted-msg-end is a byte-compiled function defined in
erc.el.gz.
Signature
(erc--get-inserted-msg-end &optional POINT)
Documentation
Return the end of message in an ERC buffer.
Include any trailing white space before final newline. Expect
POINT to be less than erc-insert-marker, and don't bother
considering erc--insert-marker, for now.
Source Code
;; Defined in /usr/src/emacs/lisp/erc/erc.el.gz
(defun erc--get-inserted-msg-end (&optional point)
"Return the end of message in an ERC buffer.
Include any trailing white space before final newline. Expect
POINT to be less than `erc-insert-marker', and don't bother
considering `erc--insert-marker', for now."
(erc--get-inserted-msg-end-at (or point (setq point (point)))
(get-text-property point 'erc--msg)))