~ruther/guix-local

045ee8ec77411ae90a594a8adb54896b08630d82 — Maxim Cournoyer a month ago 0c6fe1a
build/dbus-service: Fix possible syntax error in 'with-retries'.

When the body was not a single expression, quote would throw a syntax error.

* gnu/build/dbus-service.scm (with-retries): Ensure the body is a single
expression when quoted for the error message.

Change-Id: I44ec61bc26c8959b499bc94eb661762afdaf99ba
1 files changed, 1 insertions(+), 1 deletions(-)

M gnu/build/dbus-service.scm
M gnu/build/dbus-service.scm => gnu/build/dbus-service.scm +1 -1
@@ 91,7 91,7 @@ each retry."
              ((sleep*) delay)            ;else wait and retry
              (loop (+ 1 attempts)))
            (error "maximum number of retry attempts reached"
                   (quote body ...) args))))))
                   (quote (begin body ...)) args))))))


;;;