mirror of
https://git.savannah.gnu.org/git/emacs/org-mode.git
synced 2024-12-02 08:22:16 +00:00
Revert "org.el (org-ctrl-c-ctrl-c): Bugfix"
This reverts commit d035a9af6c
.
See http://article.gmane.org/gmane.emacs.orgmode/81752
This commit is contained in:
parent
d035a9af6c
commit
c89827dc37
@ -20236,12 +20236,9 @@ This command does many different things, depending on context:
|
||||
((bold code entity export-snippet inline-babel-call inline-src-block
|
||||
italic latex-fragment line-break macro strike-through subscript
|
||||
superscript underline verbatim)
|
||||
(while (and (not (memq (setq type (org-element-type context))
|
||||
'(paragraph verse-block)))
|
||||
(org-element-property
|
||||
:parent
|
||||
(org-element-property :parent context)))
|
||||
(setq context (org-element-property :parent context)))))
|
||||
(while (and (setq context (org-element-property :parent context))
|
||||
(not (memq (setq type (org-element-type context))
|
||||
'(paragraph verse-block)))))))
|
||||
;; For convenience: at the first line of a paragraph on the
|
||||
;; same line as an item, apply function on that item instead.
|
||||
(when (eq type 'paragraph)
|
||||
|
Loading…
Reference in New Issue
Block a user