FIX use file nodes when none available from parents
This commit is contained in:
parent
bb9fbf2ed2
commit
60518df318
|
@ -520,7 +520,8 @@ used for optimization."
|
||||||
this-links (or (org-x-dag-get-parent-links (nth 3 this-pblock)
|
this-links (or (org-x-dag-get-parent-links (nth 3 this-pblock)
|
||||||
next-pos)
|
next-pos)
|
||||||
(unless node-stack
|
(unless node-stack
|
||||||
(nth 2 (car bare-stack)))))
|
(or (nth 2 (car bare-stack))
|
||||||
|
this-file-links))))
|
||||||
(when this-tags
|
(when this-tags
|
||||||
(setq this-tags (split-string this-tags ":")))
|
(setq this-tags (split-string this-tags ":")))
|
||||||
(when (and (not node-stack) bare-stack)
|
(when (and (not node-stack) bare-stack)
|
||||||
|
|
Loading…
Reference in New Issue