Function: org-get-at-eol

org-get-at-eol is a byte-compiled function defined in org-macs.el.

Signature

(org-get-at-eol PROPERTY N)

Documentation

Get text property PROPERTY at the end of line less N characters.

Source Code

;; Defined in ~/.emacs.d/elpa/org-9.8.2/org-macs.el
(defun org-get-at-eol (property n)
  "Get text property PROPERTY at the end of line less N characters."
  (get-text-property (- (line-end-position) n) property))