|
@@ -288,6 +288,10 @@ otherwise."
|
|
((= (point) (org-element-property :begin context)))
|
|
((= (point) (org-element-property :begin context)))
|
|
;; Within recursive object too, but not in a link.
|
|
;; Within recursive object too, but not in a link.
|
|
((eq type 'link) nil)
|
|
((eq type 'link) nil)
|
|
|
|
+ ((eq type 'table-cell)
|
|
|
|
+ ;; :contents-begin is not reliable on empty cells, so special
|
|
|
|
+ ;; case it.
|
|
|
|
+ (<= (point) (org-element-property :contents-end context)))
|
|
((let ((cbeg (org-element-property :contents-begin context))
|
|
((let ((cbeg (org-element-property :contents-begin context))
|
|
(cend (org-element-property :contents-end context)))
|
|
(cend (org-element-property :contents-end context)))
|
|
(and cbeg (>= (point) cbeg) (<= (point) cend))))))))
|
|
(and cbeg (>= (point) cbeg) (<= (point) cend))))))))
|