1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-10-18 02:19:39 +00:00

Add section number with .Xr. .Xr -> .Vt changes.

This commit is contained in:
Philippe Charnier 2003-06-08 10:17:24 +00:00
parent ab165955de
commit 82f7b9cd41
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=116026

View File

@ -72,12 +72,12 @@ The
.Fn regcomp
function
compiles a regular expression into a structure of type
.Xr regexp ,
.Vt regexp ,
and returns a pointer to it.
The space has been allocated using
.Xr malloc 3
and may be released by
.Xr free .
.Xr free 3 .
.Pp
The
.Fn regexec
@ -96,7 +96,7 @@ and
(see below) accordingly.
.Pp
The members of a
.Xr regexp
.Vt regexp
structure include at least the following (not necessarily in order):
.Bd -literal -offset indent
char *startp[NSUBEXP];
@ -311,7 +311,7 @@ applying `*' or `+' to a possibly-null operand is an artifact of the
simplistic implementation.
.Pp
Does not support
.Xr egrep Ns 's
.Xr egrep 1 Ns 's
newline-separated branches;
neither does the V8
.Xr regexp 3 ,