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)

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)
  "Return the value of text property PROP for some message at point."
  (and-let* ((stack-pos (erc--get-inserted-msg-beg (point))))
    (get-text-property stack-pos prop)))