From fccc45cd6f854d8739b63ce9a993074fa0b2bb38 Mon Sep 17 00:00:00 2001 From: jn Date: Mon, 15 Jul 2024 14:43:45 +0000 Subject: Fix error format Remove redundant format; args to error are already passed to format-message. Also fix format string. --- init.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.el b/init.el index 16ba71a..78dd81e 100644 --- a/init.el +++ b/init.el @@ -24,7 +24,7 @@ ;;; Guardrail (when (< emacs-major-version 29) - (error (format "Emacs Bedrock only works with Emacs 29 and newer; you have version ~a" emacs-major-version))) + (error "Emacs Bedrock only works with Emacs 29 and newer; you have version %s" emacs-major-version)) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;; -- cgit v1.2.3