diff options
author | Joris | 2024-01-05 22:33:00 +0100 |
---|---|---|
committer | Joris | 2024-01-05 22:33:00 +0100 |
commit | d9c50ea7ba3aad5a6794991d2cc03a068820d1a6 (patch) | |
tree | 84c12d9e04a657c27efc485dfe3553093c37adb9 /src | |
parent | 43b46b17fc1d12170549702206bc0060f5f8c265 (diff) |
Add losing my religion from REM
Diffstat (limited to 'src')
-rw-r--r-- | src/main.lisp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/main.lisp b/src/main.lisp index 51a7cbb..2c7375e 100644 --- a/src/main.lisp +++ b/src/main.lisp @@ -56,13 +56,14 @@ ; Part (defun part-name (key) - (ecase key + (case key ('intro "Intro") ('verse "Couplet") ('chorus "Refrain") ('interlude "Interlude") ('bridge "Pont") - ('outro "Outro"))) + ('outro "Outro") + (otherwise key))) (defun part-tags (key children) (h "div" |