From 0b54bce2c477f7c4b332d16ef9c06350a4620cb3 Mon Sep 17 00:00:00 2001 From: Bastien Guerry Date: Thu, 26 Jul 2012 08:09:22 +0200 Subject: [PATCH] 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. --- lisp/org.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/org.el b/lisp/org.el index 575fb7c83..2a0160d36 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))) -- 2.11.4.GIT