From 64d9cd2b0687757aff76cc394f5b8efef752c348 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Sat, 24 Dec 2011 18:00:02 +0100 Subject: [PATCH] contrib/lisp/org-element.el (org-element-inlinetask-parser): Fix attributes names --- contrib/lisp/org-element.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/lisp/org-element.el b/contrib/lisp/org-element.el index f62d99453..23032c914 100644 --- a/contrib/lisp/org-element.el +++ b/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) -- 2.11.4.GIT