소스 검색

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

* lisp/org.el (org-delete-property): `org-entry-delete' takes 2 args
  but was called with 3.
Oleh Krehel 11 년 전
부모
커밋
c1d5a0ae05
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      lisp/org.el

+ 1 - 1
lisp/org.el

@@ -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)