소스 검색

Merge branch 'maint'

Nicolas Goaziou 7 년 전
부모
커밋
15c9e91bf3
1개의 변경된 파일2개의 추가작업 그리고 3개의 파일을 삭제
  1. 2 3
      lisp/org-indent.el

+ 2 - 3
lisp/org-indent.el

@@ -301,9 +301,8 @@ have `org-warning' face."
 	 (wrap
 	  (org-add-props
 	      (concat line
-		      (make-string level (if heading ?* ?\s))
-		      (if heading " "
-			(make-string (+ indentation (min level 1)) ?\s)))
+		      (if heading (concat (make-string level ?*) " ")
+			(make-string indentation ?\s)))
 	      nil 'face 'org-indent)))
     ;; Add properties down to the next line to indent empty lines.
     (add-text-properties (line-beginning-position) (line-beginning-position 2)