From 90e9aeeff5e20b49af4fe5bf1550368b332a5247 Mon Sep 17 00:00:00 2001 From: Bastien Guerry Date: Sat, 18 Aug 2012 17:52:02 +0200 Subject: [PATCH] =?UTF-8?q?org.el:=20Fix=20bug=20in=20=CC=80org-fontify-me?= =?UTF-8?q?ta-lines-and-blocks-1'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * org.el (org-fontify-meta-lines-and-blocks-1): Correctly handle metalines with #+results[...]:. --- lisp/org.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lisp/org.el b/lisp/org.el index 2ddc9a03c..33dc8d756 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -5579,7 +5579,8 @@ by a #." (if (string-equal dc1 "+title:") '(font-lock-fontified t face org-document-title) '(font-lock-fontified t face org-document-info)))) - ((or (member dc1 '("+begin:" "+end:" "+caption:" "+label:" + ((or (equal dc1 "+results") + (member dc1 '("+begin:" "+end:" "+caption:" "+label:" "+orgtbl:" "+tblfm:" "+tblname:" "+results:" "+call:" "+header:" "+headers:" "+name:")) (and (match-end 4) (equal dc3 "+attr")))