diff options
-rw-r--r-- | emacs/guix-build-log.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/emacs/guix-build-log.el b/emacs/guix-build-log.el index 6faa37c311..9ce30bd1dd 100644 --- a/emacs/guix-build-log.el +++ b/emacs/guix-build-log.el @@ -141,7 +141,7 @@ STATE is a symbol denoting how a build phase was ended. It should be (rx-to-string `(and bol "phase " (regexp ,guix-build-log-phase-name-regexp) " " (group (regexp ,state-rx)) " after " - (group (1+ digit)) " seconds") + (group (1+ (or digit "."))) " seconds") t))) (defvar guix-build-log-phase-end-regexp |