summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Guerry <bzg@altern.org>2014-01-16 12:07:27 +0100
committerBastien Guerry <bzg@altern.org>2014-01-16 12:07:27 +0100
commitd16477913df4c91055239cf832c3da57152e751c (patch)
treeb0d45ea5fff00d7a5951d702b06e04a379792962
parentbe54f049ddd4a89082152b36da6b4cc63e58a45a (diff)
downloadorg-mode-d16477913df4c91055239cf832c3da57152e751c.tar.gz
Fix ff902crelease_8.2.5f
-rw-r--r--lisp/org.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/org.el b/lisp/org.el
index ba3f92a..32f76ba 100644
--- a/lisp/org.el
+++ b/lisp/org.el
@@ -14539,7 +14539,7 @@ the column by ignoring invisible text."
(goto-char (match-beginning 0))
(setq c0 (current-column)
;; compute offset for the case of org-indent-mode active
- di (if org-indent-mode
+ di (if (org-bound-and-true-p org-indent-mode)
(* (1- org-indent-indentation-per-level) (1- level))
0)
p0 (if (equal (char-before) ?*) (1+ (point)) (point))