Function: org-get-at-eol

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

Signature

(org-get-at-eol PROPERTY N)

Documentation

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

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-macs.el.gz
(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))