From 71809ee5df5965e304bbbb02828b2de1f89cbd81 Mon Sep 17 00:00:00 2001 From: Rahul Martim Juliato Date: Tue, 12 May 2026 00:14:02 -0300 Subject: [PATCH] Fix 'markdown-ts-code-span' face (bug#81026) * lisp/textmodes/markdown-ts-mode.el (markdown-ts-code-span): Inherit from 'font-lock-keyword-face' rather than 'font-lock-string-face'. --- lisp/textmodes/markdown-ts-mode.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/textmodes/markdown-ts-mode.el b/lisp/textmodes/markdown-ts-mode.el index d57b7aa98ef..12e2e7c37f9 100644 --- a/lisp/textmodes/markdown-ts-mode.el +++ b/lisp/textmodes/markdown-ts-mode.el @@ -639,7 +639,7 @@ newline." "Face for Markdown link destinations (URLs)." :version "31.1") -(defface markdown-ts-code-span '((t (:inherit font-lock-string-face))) +(defface markdown-ts-code-span '((t (:inherit font-lock-keyword-face))) "Face for Markdown inline code spans." :version "31.1")