소스 검색

org-element: Fix infloop when an heading is the first line of a buffer

* contrib/lisp/org-element.el (org-element-section-parser): Fix
  infloop when an heading is the first line of a buffer.
Nicolas Goaziou 13 년 전
부모
커밋
27f3a7cb05
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      contrib/lisp/org-element.el

+ 1 - 1
contrib/lisp/org-element.el

@@ -736,7 +736,7 @@ and `:post-blank' keywords."
     ;; line after previous headline.
     (let ((begin (save-excursion
 		   (org-with-limited-levels (outline-previous-heading))
-		   (if (bobp) (point)
+		   (if (not (org-at-heading-p)) (point)
 		     (forward-line) (org-skip-whitespace) (point-at-bol))))
 	  (end (progn (org-with-limited-levels (outline-next-heading))
 		      (point)))