summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Richard <theonewiththeevillook@yahoo.fr>2013-02-27 17:55:42 +0100
committerBastien Guerry <bzg@altern.org>2013-02-27 18:13:48 +0100
commit8e22aafe9a8a1206490932cdde5c9f66f1dfefb1 (patch)
tree994bbac1733f87a8c61932f7100e93253224ac85
parent01748861d42af99dd6a4c9b2f98a1991011a30bc (diff)
downloadorg-mode-8e22aafe9a8a1206490932cdde5c9f66f1dfefb1.tar.gz
Fix b6b509b one more time.
-rw-r--r--lisp/org.el12
1 files changed, 6 insertions, 6 deletions
diff --git a/lisp/org.el b/lisp/org.el
index 574c2a8..cc4c93f 100644
--- a/lisp/org.el
+++ b/lisp/org.el
@@ -5519,15 +5519,15 @@ by a #."
(if (and (re-search-forward org-tsr-regexp-both limit t)
(not (equal (char-before (match-beginning 0)) 91)))
(progn
- (org-remove-flyspell-overlays-in (match-beginning 1) (match-end 1))
- (add-text-properties (match-beginning 1) (match-end 1)
+ (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
+ (add-text-properties (match-beginning 0) (match-end 0)
(list 'mouse-face 'highlight
'keymap org-mouse-map))
- (org-rear-nonsticky-at (match-end 1))
+ (org-rear-nonsticky-at (match-end 0))
(when org-display-custom-times
- (if (match-end 4)
- (org-display-custom-time (match-beginning 4) (match-end 4)))
- (org-display-custom-time (match-beginning 2) (match-end 2)))
+ (if (match-end 3)
+ (org-display-custom-time (match-beginning 3) (match-end 3)))
+ (org-display-custom-time (match-beginning 1) (match-end 1)))
t)))
(defvar org-target-link-regexp nil