From fe3dd134ed79d9ed8a50f5682a6db3249c104d77 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Henrik=20Grubbstr=C3=B6m=20=28Grubba=29?=
 <grubba@grubba.org>
Date: Mon, 8 Sep 1997 23:51:04 +0200
Subject: [PATCH] Fixed error message.

Rev: src/mapping.c:1.22
---
 src/mapping.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/mapping.c b/src/mapping.c
index 5bddebba73..85c2fe6876 100644
--- a/src/mapping.c
+++ b/src/mapping.c
@@ -4,7 +4,7 @@
 ||| See the files COPYING and DISCLAIMER for more information.
 \*/
 #include "global.h"
-RCSID("$Id: mapping.c,v 1.21 1997/08/30 18:35:42 grubba Exp $");
+RCSID("$Id: mapping.c,v 1.22 1997/09/08 21:51:04 grubba Exp $");
 #include "main.h"
 #include "object.h"
 #include "mapping.h"
@@ -788,7 +788,7 @@ void f_m_delete(INT32 args)
   if(args < 2)
     error("Too few arguments to m_delete.\n");
   if(sp[-args].type != T_MAPPING)
-    error("Bad argument to to m_delete.\n");
+    error("Bad argument 1 to m_delete.\n");
 
   map_delete(sp[-args].u.mapping,sp+1-args);
   pop_n_elems(args-1);
-- 
GitLab