Function: erc--get-inserted-msg-prop
erc--get-inserted-msg-prop is a byte-compiled function defined in
erc.el.gz.
Signature
(erc--get-inserted-msg-prop PROP &optional POINT)
Documentation
Return the value of text property PROP for some message at point.
Source Code
;; Defined in /usr/src/emacs/lisp/erc/erc.el.gz
(defun erc--get-inserted-msg-prop (prop &optional point)
"Return the value of text property PROP for some message at point."
(and-let* ((stack-pos (erc--get-inserted-msg-beg (or point (point)))))
(get-text-property stack-pos prop)))