From 3549f9cd0372086eabc5b69436e100136cbe7b32 Mon Sep 17 00:00:00 2001 From: cage Date: Mon, 28 Dec 2020 15:21:53 +0100 Subject: [PATCH] - added missing call to format. --- src/modules.lisp | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/src/modules.lisp b/src/modules.lisp index ac25038..28a4318 100644 --- a/src/modules.lisp +++ b/src/modules.lisp @@ -34,8 +34,10 @@ (data-file (%load data-file)) (t - (error (_ "Unrecoverable error: file ~a not found in any of the directory ~a ~a ~a ~a") - +sys-data-dir+ - +sys-conf-dir+ - (home-datadir) - (home-confdir))))))) + (error (format nil + (_ "Unrecoverable error: file ~a not found in any of the directory ~a ~a ~a ~a") + path + +sys-data-dir+ + +sys-conf-dir+ + (home-datadir) + (home-confdir))))))))