guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: gnu: cool-retro-term: Fixes font loading.


From: guix-commits
Subject: branch master updated: gnu: cool-retro-term: Fixes font loading.
Date: Wed, 12 Oct 2022 11:02:30 -0400

This is an automated email from the git hooks/post-receive script.

bavier pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 86ec52f667 gnu: cool-retro-term: Fixes font loading.
86ec52f667 is described below

commit 86ec52f66735b122b9035eba56516fd16f3be958
Author: Eric Bavier <bavier@posteo.net>
AuthorDate: Wed Oct 12 09:28:48 2022 -0500

    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.
---
 gnu/packages/terminals.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnu/packages/terminals.scm b/gnu/packages/terminals.scm
index f29d7e3773..8f2ac9974c 100644
--- a/gnu/packages/terminals.scm
+++ b/gnu/packages/terminals.scm
@@ -743,7 +743,7 @@ embedded kernel situations.")
                        ""))
                     (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)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]