Explorar o código

Correctly fontify headlines with special keywords

* lisp/org.el (org-set-font-lock-defaults): Fix small error in
  matching group that prevented fontification of keywords like
  org-comment-string and stars in headlines.
Nicolas Goaziou %!s(int64=13) %!d(string=hai) anos
pai
achega
2a58775d9e
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      lisp/org.el

+ 1 - 1
lisp/org.el

@@ -5814,7 +5814,7 @@ needs to be inserted at a specific position in the font-lock sequence.")
 			 (concat "\\("
 				 org-comment-string "\\|" org-quote-string
 				 "\\)"))
-		 '(1 'org-special-keyword t))
+		 '(2 'org-special-keyword t))
 	   '("^#.*" (0 'font-lock-comment-face t))
 	   ;; Blocks and meta lines
 	   '(org-fontify-meta-lines-and-blocks)