org-plus-contrib 近期更新后 org mode 中的代码块不能语法高亮了?

最后一次更新是在 9月7日,大家有没有遇到这个问题?

我这边有这个问题。官方master分支这个commit修复了问题。

主要是这段修改

@@ -5285,10 +5285,7 @@ by a #."
 	     ((string= block-type "verse")
 	      (add-face-text-property
 	       bol-after-beginline beg-of-endline 'org-verse t)))
-	    ;; Use the org-block face for all true blocks.
-	    (add-text-properties
-	     bol-after-beginline beg-of-endline (list 'face 'org-block))
-	    ;; Fontify the #+begin and #+end lines of the blocks.
+	    ;; Fontify the #+begin and #+end lines of the blocks
 	    (add-text-properties
 	     beg (if whole-blockline bol-after-beginline end-of-beginline)
 	     '(face org-block-begin-line))

这个问题今天的更新已经解决了