summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Guerry <bzg@altern.org>2012-07-26 08:09:22 +0200
committerBastien Guerry <bzg@altern.org>2012-07-26 08:09:22 +0200
commit0b54bce2c477f7c4b332d16ef9c06350a4620cb3 (patch)
tree86713d227b74b92cf5400729bf59f17867e81b7f
parent2dfa6aaf7944b44c0f4f9937c625818f1b7bec13 (diff)
downloadorg-mode-0b54bce2c477f7c4b332d16ef9c06350a4620cb3.tar.gz
org.el: Fix indentation of a property line starting at the beginning of a line.
* org.el (org-indent-line): Fix indentation of a property line starting at the beginning of a line.
-rw-r--r--lisp/org.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/org.el b/lisp/org.el
index 575fb7c..2a0160d 100644
--- a/lisp/org.el
+++ b/lisp/org.el
@@ -20594,7 +20594,7 @@ If point is in an inline task, mark that task instead."
(setq column (current-column))
(beginning-of-line 1)
(if (looking-at
- "\\([ \t]+\\)\\(:[-_0-9a-zA-Z]+:\\)[ \t]*\\(\\S-.*\\(\\S-\\|$\\)\\)")
+ "\\([ \t]*\\)\\(:[-_0-9a-zA-Z]+:\\)[ \t]*\\(\\S-.*\\(\\S-\\|$\\)\\)")
(replace-match (concat (match-string 1)
(format org-property-format
(match-string 2) (match-string 3)))