Skip to content

Commit c916d59

Browse files
committed
use define*-public
1 parent 63538f2 commit c916d59

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lilygabc/lyrics.scm

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
;; processing lyrics
22

33
(define-module (lilygabc lyrics)
4+
#:use-module (ice-9 optargs)
45
#:use-module (ice-9 regex)
56
#:use-module (srfi srfi-1)
67
#:use-module (srfi srfi-26))
@@ -84,8 +85,7 @@
8485
(formatting-inner '() str '()))
8586

8687
;; removes curly braces except those inside <v></v> tags
87-
(export remove-braces)
88-
(define* (remove-braces str #:optional (in-verbatim #f))
88+
(define*-public (remove-braces str #:optional (in-verbatim #f))
8989
(let* ((tag (if in-verbatim "</v>" "<v>"))
9090
(tag-i (string-contains str tag))
9191
(subject

0 commit comments

Comments
 (0)