Browse Source

Fix previous commit

Bastien 5 năm trước cách đây
mục cha
commit
7f1b51b615
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      lisp/org.el

+ 1 - 1
lisp/org.el

@@ -5840,7 +5840,7 @@ needs to be inserted at a specific position in the font-lock sequence.")
 (defun org-get-level-face (n)
   "Get the right face for match N in font-lock matching of headlines."
   (let* ((org-l0 (- (match-end 2) (match-beginning 1) 1))
-	 (org-l (when org-odd-levels-only (1+ (/ org-l0 2)) org-l0))
+	 (org-l (if org-odd-levels-only (1+ (/ org-l0 2)) org-l0))
 	 (org-f (if org-cycle-level-faces
 		    (nth (% (1- org-l) org-n-level-faces) org-level-faces)
 		  (nth (1- (min org-l org-n-level-faces)) org-level-faces))))