Browse Source

contrib/lisp/org-element.el (org-element-inlinetask-parser): Fix attributes names

Nicolas Goaziou 13 năm trước cách đây
mục cha
commit
64d9cd2b06
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  1. 2 2
      contrib/lisp/org-element.el

+ 2 - 2
contrib/lisp/org-element.el

@@ -477,8 +477,8 @@ Assume point is at beginning of the inline task."
 			 :contents-begin ,contents-begin
 			 :contents-end ,contents-end
 			 :level ,(nth 1 components)
-			 :with-priority ,(nth 3 components)
-			 :with-tags ,(nth 5 components)
+			 :priority ,(nth 3 components)
+			 :tags ,(nth 5 components)
 			 :todo-keyword ,todo
 			 :todo-type ,todo-type
 			 :post-blank ,(count-lines pos-before-blank end)