summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Guerry <bzg@altern.org>2014-02-01 01:06:25 +0100
committerBastien Guerry <bzg@altern.org>2014-02-01 01:06:25 +0100
commitc89827dc37d061babd09f4fccd79def03c30b139 (patch)
tree1f423c49af4fc453c845582a6640d39b39a1f4b5
parentd035a9af6c77deacb102406feb5450fed78a7c25 (diff)
downloadorg-mode-c89827dc37d061babd09f4fccd79def03c30b139.tar.gz
Revert "org.el (org-ctrl-c-ctrl-c): Bugfix"
This reverts commit d035a9af6c77deacb102406feb5450fed78a7c25. See http://article.gmane.org/gmane.emacs.orgmode/81752
-rw-r--r--lisp/org.el9
1 files changed, 3 insertions, 6 deletions
diff --git a/lisp/org.el b/lisp/org.el
index 98443b5..650b6ba 100644
--- a/lisp/org.el
+++ b/lisp/org.el
@@ -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)