guix-commits
[Top][All Lists]
Advanced

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

[shepherd] 01/03: timer: Remove trailing newline in messages.


From: Ludovic Courtès
Subject: [shepherd] 01/03: timer: Remove trailing newline in messages.
Date: Sun, 21 Apr 2024 16:43:30 -0400 (EDT)

civodul pushed a commit to branch devel
in repository shepherd.

commit 5b10922d6eb5c084d165dfebba08ecaede7f7442
Author: Ludovic Courtès <ludo@gnu.org>
AuthorDate: Sat Apr 20 11:39:40 2024 +0200

    timer: Remove trailing newline in messages.
    
    * modules/shepherd/service/timer.scm (make-timer-constructor)
    (trigger-timer): Remove trailing newline in messages.
---
 modules/shepherd/service/timer.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/modules/shepherd/service/timer.scm 
b/modules/shepherd/service/timer.scm
index ccaa790..a05f0bd 100644
--- a/modules/shepherd/service/timer.scm
+++ b/modules/shepherd/service/timer.scm
@@ -572,7 +572,7 @@ instances running concurrently."
                       (lambda (key . args)
                         (local-output
                          (l10n "Exception caught while calling action of \
-timer '~a': ~s~%")
+timer '~a': ~s")
                          name (cons key args))))
                     (loop processes termination))))))))
 
@@ -591,7 +591,7 @@ constructor was given by @code{make-timer-destructor}."
 (define (trigger-timer timer)
   "Trigger the action associated with @var{timer} as if it had reached its
 next calendar event."
-  (local-output (l10n "Triggering timer.~%"))
+  (local-output (l10n "Triggering timer."))
   (put-message (timer-channel timer) 'timeout))
 
 (define timer-trigger-action



reply via email to

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