Merge branch 'maint'
This commit is contained in:
commit
bdeac998c8
|
@ -20378,9 +20378,12 @@ This command does many different things, depending on context:
|
||||||
((bold code entity export-snippet inline-babel-call inline-src-block
|
((bold code entity export-snippet inline-babel-call inline-src-block
|
||||||
italic latex-fragment line-break macro strike-through subscript
|
italic latex-fragment line-break macro strike-through subscript
|
||||||
superscript underline verbatim)
|
superscript underline verbatim)
|
||||||
(while (and (setq context (org-element-property :parent context))
|
(while (and (not (memq (setq type (org-element-type context))
|
||||||
(not (memq (setq type (org-element-type context))
|
'(paragraph verse-block)))
|
||||||
'(paragraph verse-block)))))))
|
(org-element-property
|
||||||
|
:parent
|
||||||
|
(org-element-property :parent context)))
|
||||||
|
(setq context (org-element-property :parent context)))))
|
||||||
;; For convenience: at the first line of a paragraph on the
|
;; For convenience: at the first line of a paragraph on the
|
||||||
;; same line as an item, apply function on that item instead.
|
;; same line as an item, apply function on that item instead.
|
||||||
(when (eq type 'paragraph)
|
(when (eq type 'paragraph)
|
||||||
|
|
Loading…
Reference in New Issue