dict.leo.org says this is correct

This commit is contained in:
tg
2011-08-13 22:19:41 +00:00
parent 80223417d7
commit 308290e2b6
2 changed files with 5 additions and 5 deletions

6
mksh.1
View File

@@ -1,4 +1,4 @@
.\" $MirOS: src/bin/mksh/mksh.1,v 1.272 2011/07/16 17:08:20 tg Exp $ .\" $MirOS: src/bin/mksh/mksh.1,v 1.273 2011/08/13 22:19:40 tg Exp $
.\" $OpenBSD: ksh.1,v 1.140 2011/04/23 10:14:59 sobrado Exp $ .\" $OpenBSD: ksh.1,v 1.140 2011/04/23 10:14:59 sobrado Exp $
.\"- .\"-
.\" Copyright © 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, .\" Copyright © 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009,
@@ -72,7 +72,7 @@
.\" with -mandoc, it might implement .Mx itself, but we want to .\" with -mandoc, it might implement .Mx itself, but we want to
.\" use our own definition. And .Dd must come *first*, always. .\" use our own definition. And .Dd must come *first*, always.
.\" .\"
.Dd $Mdocdate: July 16 2011 $ .Dd $Mdocdate: August 13 2011 $
.\" .\"
.\" Check which macro package we use .\" Check which macro package we use
.\" .\"
@@ -926,7 +926,7 @@ $ [[ $bar = $baz ]]; echo $?
$ [[ $bar = "$baz" ]]; echo $? $ [[ $bar = "$baz" ]]; echo $?
.Ed .Ed
.Pp .Pp
Perhaps surprisingly, the first comparision succeeds, Perhaps surprisingly, the first comparison succeeds,
whereas the second doesn't. whereas the second doesn't.
.El .El
.El .El

4
sh.h
View File

@@ -151,7 +151,7 @@
#endif #endif
#ifdef EXTERN #ifdef EXTERN
__RCSID("$MirOS: src/bin/mksh/sh.h,v 1.490 2011/07/26 16:57:28 tg Exp $"); __RCSID("$MirOS: src/bin/mksh/sh.h,v 1.491 2011/08/13 22:19:41 tg Exp $");
#endif #endif
#define MKSH_VERSION "R40 2011/07/26" #define MKSH_VERSION "R40 2011/07/26"
@@ -651,7 +651,7 @@ struct shoption {
}; };
extern const struct shoption options[]; extern const struct shoption options[];
/* null value for variable; comparision pointer for unset */ /* null value for variable; comparison pointer for unset */
EXTERN char null[] I__(""); EXTERN char null[] I__("");
/* helpers for string pooling */ /* helpers for string pooling */
EXTERN const char T_intovfl[] I__("integer overflow %lu %c %lu prevented"); EXTERN const char T_intovfl[] I__("integer overflow %lu %c %lu prevented");