summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Goaziou <n.goaziou@gmail.com>2011-08-17 03:15:22 +0200
committerNicolas Goaziou <n.goaziou@gmail.com>2011-08-17 03:15:22 +0200
commit7a826e09b1e731a1aefec122a5929d2b6900984b (patch)
treeff27306e855d0d9a345df6831cd8e0d7b4446326
parent430b73b90cd15c0e033888cb6e59afff75f29a4d (diff)
downloadorg-mode-7a826e09b1e731a1aefec122a5929d2b6900984b.tar.gz
fix code typo
-rw-r--r--lisp/org.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/org.el b/lisp/org.el
index 46c072b..9b5f146 100644
--- a/lisp/org.el
+++ b/lisp/org.el
@@ -19115,7 +19115,7 @@ position before START-RE (resp. after END-RE)."
(> (setq end (match-end 0)) pos)
;; ... without another START-RE in-between.
(goto-char (match-beginning 0))
- (not (re-search-backward start-re (1+ pos) t))
+ (not (re-search-backward start-re (1+ beg) t))
;; Return value.
(cons beg end))))))