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:
parent
e1baf802cc
commit
86ec52f667
1 changed files with 1 additions and 1 deletions
|
@ -743,7 +743,7 @@ embedded kernel situations.")
|
||||||
""))
|
""))
|
||||||
(for-each
|
(for-each
|
||||||
(lambda (file)
|
(lambda (file)
|
||||||
(let ((start-rx (make-regexp " *ListElement\\{"))
|
(let ((start-rx (make-regexp " *ListElement *\\{"))
|
||||||
(end-rx (make-regexp " *\\}")))
|
(end-rx (make-regexp " *\\}")))
|
||||||
(with-atomic-file-replacement file
|
(with-atomic-file-replacement file
|
||||||
(lambda (in out)
|
(lambda (in out)
|
||||||
|
|
Reference in a new issue