* lisp/org.el (org-at-property-p): Fix typo.
This commit is contained in:
Nicolas Goaziou 2015-04-07 01:36:29 +02:00
parent b4f9ee4eba
commit 033847070e
1 changed files with 1 additions and 1 deletions

View File

@ -15543,7 +15543,7 @@ See `org-property-re' for match data, if applicable."
(and (looking-at org-property-re)
(let ((property-drawer (save-match-data (org-get-property-block))))
(and property-drawer
(> (point) (car property-drawer))
(>= (point) (car property-drawer))
(< (point) (cdr property-drawer)))))))
(defun org-property-action ()