瀏覽代碼

Fix some #+ blocks fontification when there is no lang attribute

* lisp/org.el (org-fontify-meta-lines-and-blocks-1): Fix test for src blocks
lang attribute

When there is no lang attribute to a block (for quote, verse or others), the
lang variable is not nil, but an empty string.
Julien Barnier 13 年之前
父節點
當前提交
549a521256
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      lisp/org.el

+ 1 - 1
lisp/org.el

@@ -5207,7 +5207,7 @@ will be prompted for."
 	      (add-text-properties end1 (+ end 1) '(face org-meta-line))
 					; for end_src
 	      (cond
-	       ((and lang org-src-fontify-natively)
+	       ((and lang (not (string= lang "") org-src-fontify-natively))
 		(org-src-font-lock-fontify-block lang block-start block-end)
 		;; remove old background overlays
 		(mapc (lambda (ov)