From f6368631652abe6100b60450455a7c1cf13592fc Mon Sep 17 00:00:00 2001 From: Juan Jose Garcia Ripoll Date: Fri, 19 Mar 2010 19:19:44 +0100 Subject: [PATCH] Fixed typo in error message (A. Hefner) --- src/lsp/defmacro.lsp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lsp/defmacro.lsp b/src/lsp/defmacro.lsp index 1c8d3d3fb..df0ebf984 100644 --- a/src/lsp/defmacro.lsp +++ b/src/lsp/defmacro.lsp @@ -77,7 +77,7 @@ (err nil)) ((null tail) (when (and err (not allow-other-keys)) - (error "They key ~s is not allowed" err))) + (error "The key ~s is not allowed" err))) (if (atom tail) (error "keyword list is not a proper list") (setq head (car tail) tail (cdr tail)))