summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIhor Radchenko <yantar92@posteo.net>2024-06-15 16:33:12 +0200
committerIhor Radchenko <yantar92@posteo.net>2024-06-15 16:33:12 +0200
commit12243b9910b2a44c0584cc95492446a34cf7c2bd (patch)
tree185388a2441ca44f0eec72ea1d65d5c3422286b2
parenta9a05dab81eb4e7d6c74bb9755d50c08973f00d1 (diff)
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 <michael.albinus@gmx.de> Link: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=71566
-rw-r--r--lisp/ob-lilypond.el2
1 files changed, 1 insertions, 1 deletions
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.