소스 검색

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.
Bastien Guerry 12 년 전
부모
커밋
0b54bce2c4
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      lisp/org.el

+ 1 - 1
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)))