From 72e82c9a6fb18715e3a745f15ca6e5e9a5505ea4 Mon Sep 17 00:00:00 2001 From: Jason Blevins Date: Thu, 5 Jun 2008 23:14:04 -0400 Subject: [PATCH] Font lock: find hr's before list items This fixes the bug introduced in revision 1.6 where asterisk-style horizontal rules were mistaken for list items. --- markdown-mode.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/markdown-mode.el b/markdown-mode.el index 952d2fd..58c09d2 100644 --- a/markdown-mode.el +++ b/markdown-mode.el @@ -389,8 +389,8 @@ (cons markdown-regex-pre markdown-blockquote-face) (cons markdown-regex-header-setext markdown-header-face) (cons markdown-regex-header-atx markdown-header-face) - (cons markdown-regex-list markdown-list-face) (cons markdown-regex-hr markdown-header-face) + (cons markdown-regex-list markdown-list-face) (cons markdown-regex-link-inline '((1 markdown-link-face t) (2 markdown-url-face t))) -- 2.11.4.GIT