org.el (org-delete-property): Fix bug

* lisp/org.el (org-delete-property): `org-entry-delete' takes 2 args
  but was called with 3.
This commit is contained in:
Oleh Krehel 2014-03-13 21:50:40 +01:00
parent 6a57319d47
commit c1d5a0ae05
1 changed files with 1 additions and 1 deletions

View File

@ -15905,7 +15905,7 @@ in the current file."
(org-icompleting-read "Property: " props nil t)
(caar props))))
(list prop)))
(if (org-entry-delete nil property delete-empty-drawer)
(if (org-entry-delete nil property)
(message "Property %s deleted" property)))
(defun org-delete-property-globally (property)