Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
PATCH: 3.1.5 - spelling mistake in error strings in params.c
- X-seq: zsh-workers 4606
- From: "Bart Schaefer" <schaefer@xxxxxxxxxxxxxxxx>
- To: zsh-workers@xxxxxxxxxxxxxxx
- Subject: PATCH: 3.1.5 - spelling mistake in error strings in params.c
- Date: Wed, 11 Nov 1998 20:25:41 -0800
Unrelated to previous params.c patches, but will have some lines offset as
a result of those.
Index: Src/params.c
===================================================================
--- params.c 1998/11/11 18:17:19 1.6
+++ params.c 1998/11/12 04:23:59
@@ -1017,12 +1017,12 @@
*pptr = s;
if (v->a > MAX_ARRLEN ||
v->a < -MAX_ARRLEN) {
- zerr("subscript to %s: %d", (v->a < 0) ? "small" : "big", v->a);
+ zerr("subscript too %s: %d", (v->a < 0) ? "small" : "big", v->a);
return NULL;
}
if (v->b > MAX_ARRLEN ||
v->b < -MAX_ARRLEN) {
- zerr("subscript to %s: %d", (v->b < 0) ? "small" : "big", v->b);
+ zerr("subscript too %s: %d", (v->b < 0) ? "small" : "big", v->b);
return NULL;
}
return v;
--
Bart Schaefer Brass Lantern Enterprises
http://www.well.com/user/barts http://www.brasslantern.com
Messages sorted by:
Reverse Date,
Date,
Thread,
Author