diff options
author | jn <j@ustink.org> | 2024-07-15 14:43:45 +0000 |
---|---|---|
committer | jn <j@ustink.org> | 2024-07-15 14:43:45 +0000 |
commit | fccc45cd6f854d8739b63ce9a993074fa0b2bb38 (patch) | |
tree | 61fb3b1f1417f4bef668923b8f60d1acc3628799 | |
parent | d9c79ecd5e648392382f2f984ed043ea2de3bde5 (diff) |
Fix error format
Remove redundant format; args to error are already passed to format-message.
Also fix format string.
-rw-r--r-- | init.el | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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)) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;; |