catch up openbsd manpage changes: typos; from alf schlichting,
and revisit the RLIMIT_AS issue
This commit is contained in:
12
mksh.1
12
mksh.1
@ -1,5 +1,5 @@
|
|||||||
.\" $MirOS: src/bin/mksh/mksh.1,v 1.70 2006/11/19 20:43:13 tg Exp $
|
.\" $MirOS: src/bin/mksh/mksh.1,v 1.71 2006/12/06 13:46:27 tg Exp $
|
||||||
.\" $OpenBSD: ksh.1,v 1.116 2006/07/26 10:13:25 jmc Exp $
|
.\" $OpenBSD: ksh.1,v 1.118 2006/11/30 08:47:58 jmc Exp $
|
||||||
.\"
|
.\"
|
||||||
.Dd November 19, 2006
|
.Dd November 19, 2006
|
||||||
.Dt MKSH 1
|
.Dt MKSH 1
|
||||||
@ -5008,15 +5008,15 @@ except it searches forward through the history.
|
|||||||
.Xc
|
.Xc
|
||||||
Search for the
|
Search for the
|
||||||
.Ar n Ns th
|
.Ar n Ns th
|
||||||
occurrence of the last search string; the directory of the search is the same
|
occurrence of the last search string;
|
||||||
as the last search.
|
the direction of the search is the same as the last search.
|
||||||
.It Xo
|
.It Xo
|
||||||
.Oo Ar n Oc Ns N
|
.Oo Ar n Oc Ns N
|
||||||
.Xc
|
.Xc
|
||||||
Search for the
|
Search for the
|
||||||
.Ar n Ns th
|
.Ar n Ns th
|
||||||
occurrence of the last search string; the directory of the search is the
|
occurrence of the last search string;
|
||||||
opposite of the last search.
|
the direction of the search is the opposite of the last search.
|
||||||
.El
|
.El
|
||||||
.Pp
|
.Pp
|
||||||
Edit commands
|
Edit commands
|
||||||
|
6
sh.h
6
sh.h
@ -8,7 +8,7 @@
|
|||||||
/* $OpenBSD: c_test.h,v 1.4 2004/12/20 11:34:26 otto Exp $ */
|
/* $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 $ */
|
/* $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"
|
#define MKSH_VERSION "R29 2006/11/19"
|
||||||
|
|
||||||
#if HAVE_SYS_PARAM_H
|
#if HAVE_SYS_PARAM_H
|
||||||
@ -118,6 +118,10 @@
|
|||||||
#define DEFFILEMODE (S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP|S_IROTH|S_IWOTH)
|
#define DEFFILEMODE (S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP|S_IROTH|S_IWOTH)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if !defined(RLIMIT_VMEM) && defined(RLIMIT_AS)
|
||||||
|
#warning portability warning: RLIMIT_AS support
|
||||||
|
#endif
|
||||||
|
|
||||||
/* OS-dependent additions */
|
/* OS-dependent additions */
|
||||||
|
|
||||||
#if !HAVE_SETMODE && !defined(MKSH_SMALL)
|
#if !HAVE_SETMODE && !defined(MKSH_SMALL)
|
||||||
|
Reference in New Issue
Block a user