catch up openbsd manpage changes: typos; from alf schlichting,

and revisit the RLIMIT_AS issue
This commit is contained in:
tg 2006-12-06 13:46:28 +00:00
parent 6775d79b2a
commit 15a0b1a021
2 changed files with 11 additions and 7 deletions

12
mksh.1
View File

@ -1,5 +1,5 @@
.\" $MirOS: src/bin/mksh/mksh.1,v 1.70 2006/11/19 20:43:13 tg Exp $
.\" $OpenBSD: ksh.1,v 1.116 2006/07/26 10:13:25 jmc Exp $
.\" $MirOS: src/bin/mksh/mksh.1,v 1.71 2006/12/06 13:46:27 tg Exp $
.\" $OpenBSD: ksh.1,v 1.118 2006/11/30 08:47:58 jmc Exp $
.\"
.Dd November 19, 2006
.Dt MKSH 1
@ -5008,15 +5008,15 @@ except it searches forward through the history.
.Xc
Search for the
.Ar n Ns th
occurrence of the last search string; the directory of the search is the same
as the last search.
occurrence of the last search string;
the direction of the search is the same as the last search.
.It Xo
.Oo Ar n Oc Ns N
.Xc
Search for the
.Ar n Ns th
occurrence of the last search string; the directory of the search is the
opposite of the last search.
occurrence of the last search string;
the direction of the search is the opposite of the last search.
.El
.Pp
Edit commands

6
sh.h
View File

@ -8,7 +8,7 @@
/* $OpenBSD: c_test.h,v 1.4 2004/12/20 11:34:26 otto Exp $ */
/* $OpenBSD: tty.h,v 1.5 2004/12/20 11:34:26 otto Exp $ */
#define MKSH_SH_H_ID "$MirOS: src/bin/mksh/sh.h,v 1.86 2006/11/19 20:43:14 tg Exp $"
#define MKSH_SH_H_ID "$MirOS: src/bin/mksh/sh.h,v 1.87 2006/12/06 13:46:28 tg Exp $"
#define MKSH_VERSION "R29 2006/11/19"
#if HAVE_SYS_PARAM_H
@ -118,6 +118,10 @@
#define DEFFILEMODE (S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP|S_IROTH|S_IWOTH)
#endif
#if !defined(RLIMIT_VMEM) && defined(RLIMIT_AS)
#warning portability warning: RLIMIT_AS support
#endif
/* OS-dependent additions */
#if !HAVE_SETMODE && !defined(MKSH_SMALL)