From 12243b9910b2a44c0584cc95492446a34cf7c2bd Mon Sep 17 00:00:00 2001 From: Ihor Radchenko Date: Sat, 15 Jun 2024 16:33:12 +0200 Subject: [PATCH] lisp/ob-lilypond.el (org-src-lang-modes): Fix alist value LilyPond-mode name should be a symbol as per `org-src-lang-modes' spec. Reported-by: Michael Albinus Link: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=71566 --- lisp/ob-lilypond.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/ob-lilypond.el b/lisp/ob-lilypond.el index 35df76fc9..a8d85ce7c 100644 --- a/lisp/ob-lilypond.el +++ b/lisp/ob-lilypond.el @@ -41,7 +41,7 @@ (declare-function org-fold-show-all "org-fold" (&optional types)) (add-to-list 'org-babel-tangle-lang-exts '("LilyPond" . "ly")) -(add-to-list 'org-src-lang-modes '("lilypond" . "LilyPond")) +(add-to-list 'org-src-lang-modes '("lilypond" . LilyPond)) (defvar org-babel-default-header-args:lilypond '() "Default header arguments for lilypond code blocks.