mirror of
https://git.savannah.gnu.org/git/emacs/org-mode.git
synced 2024-11-22 07:09:47 +00:00
ox-taskjuggler.el: Fix dependencies string
* contrib/lisp/ox-taskjuggler.el (org-taskjuggler-format-dependencies): Fix dependencies string.
This commit is contained in:
parent
5ef07dc54a
commit
77476cae03
@ -544,7 +544,7 @@ doesn't include leading \"depends\"."
|
||||
(get-path
|
||||
(lambda (dep)
|
||||
;; Return path to DEP relatively to TASK.
|
||||
(let ((parent (org-export-get-parent dep))
|
||||
(let ((parent (org-export-get-parent task))
|
||||
(exclamations 1)
|
||||
(option
|
||||
(let ((id (org-element-property :TASK_ID dep)))
|
||||
@ -555,7 +555,7 @@ doesn't include leading \"depends\"."
|
||||
;; Compute number of exclamation marks by looking for the
|
||||
;; common ancestor between TASK and DEP.
|
||||
(while (not (org-element-map parent 'headline
|
||||
(lambda (hl) (eq hl task))))
|
||||
(lambda (hl) (eq hl dep))))
|
||||
(incf exclamations)
|
||||
(setq parent (org-export-get-parent parent)))
|
||||
;; Build path from DEP to PARENT.
|
||||
|
Loading…
Reference in New Issue
Block a user