commit fccc45cd6f854d8739b63ce9a993074fa0b2bb38 from: jn date: Mon Jul 15 14:43:45 2024 UTC Fix error format Remove redundant format; args to error are already passed to format-message. Also fix format string. commit - d9c79ecd5e648392382f2f984ed043ea2de3bde5 commit + fccc45cd6f854d8739b63ce9a993074fa0b2bb38 blob - 16ba71ad23ca28e3bc804e0c3cb2df8a84395cc5 blob + 78dd81ef901a8613ce3b87b3eef42e7365a6b419 --- init.el +++ 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)) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;