[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [RP] PATCH - error messages
From: |
Doug Kearns |
Subject: |
Re: [RP] PATCH - error messages |
Date: |
Mon, 13 Dec 2004 15:22:12 +1100 |
User-agent: |
Mutt/1.4i |
On Thu, Dec 09, 2004 at 05:56:39PM -0800, Shawn Betts wrote:
> Doug Kearns <address@hidden> writes:
>
> > On Tue, Nov 16, 2004 at 07:08:36AM +1100, Doug Kearns wrote:
> > > Some important fixes...
> > >
> > > http://gus.gscit.monash.edu.au/~djkea2/ratpoison/actions.diff
> >
> > This has been updated to include the new 'rathold' command messages and
> > is, as a result, now even more important...
>
> Applied to CVS. Thanks!
Missed a couple...
Regards,
Doug
Index: src/actions.c
===================================================================
RCS file: /cvsroot/ratpoison/ratpoison/src/actions.c,v
retrieving revision 1.224
diff -u -r1.224 actions.c
--- src/actions.c 13 Dec 2004 03:08:46 -0000 1.224
+++ src/actions.c 13 Dec 2004 03:59:26 -0000
@@ -1977,13 +1977,13 @@
if (data == NULL)
{
- message ("ratwarp: 2 arguments required");
+ message ("ratwarp: two arguments required");
return NULL;
}
if (sscanf(data, "%d %d", &x, &y) < 2 || x < 0 || y < 0)
{
- message ("ratwarp: Invalid arguments");
+ message ("ratwarp: invalid arguments");
return NULL;
}
@@ -2001,13 +2001,13 @@
if (data == NULL)
{
- message ("ratrelwarp: 2 arguments required");
+ message ("ratrelwarp: two arguments required");
return NULL;
}
if (sscanf (data, "%d %d", &x, &y) < 2)
{
- message ("ratrelwarp: Invalid arguments");
+ message ("ratrelwarp: invalid arguments");
return NULL;
}
@@ -4598,7 +4598,7 @@
}
}
- marked_message_printf (0, 0, "set: unknown variable '%s", var);
+ marked_message_printf (0, 0, "set: unknown variable '%s'", var);
free (var);
if (rest)
free (rest);