gnu: cool-retro-term: Fixes font loading.

This addresses <https://issues.guix.gnu.org/58451>

* gnu/packages/terminals.scm (cool-retro-term)[source]: In snippet for font
handling, adjust regexp to account for possible presence of whitespace.
This commit is contained in:
Eric Bavier 2022-10-12 09:28:48 -05:00
parent e1baf802cc
commit 86ec52f667
No known key found for this signature in database
GPG key ID: BC45CA67E2F8D007

View file

@ -743,7 +743,7 @@ (define-public cool-retro-term
""))
(for-each
(lambda (file)
(let ((start-rx (make-regexp " *ListElement\\{"))
(let ((start-rx (make-regexp " *ListElement *\\{"))
(end-rx (make-regexp " *\\}")))
(with-atomic-file-replacement file
(lambda (in out)