Skip to content

Commit 03e3563

Browse files
committed
core: Flip cases in if lookup for parser
1 parent 3785f82 commit 03e3563

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ly/_internal/module-handling.ily

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -213,8 +213,8 @@ useLibrary =
213213
; (ly:parser-include-string parser (ly:gulp-file main-file))
214214
(let ((arg (format "\\include \"~a\"" main-file)))
215215
(if (lilypond-greater-than? "2.19.21")
216-
(ly:parser-include-string parser arg)
217-
(ly:parser-include-string arg))
216+
(ly:parser-include-string arg)
217+
(ly:parser-include-string parser arg))
218218

219219
(set! oll-loaded-libraries
220220
(append oll-loaded-libraries

0 commit comments

Comments
 (0)