summaryrefslogtreecommitdiff
path: root/lib/libcompat
diff options
context:
space:
mode:
authorPhilippe Charnier <charnier@FreeBSD.org>2003-06-08 10:17:24 +0000
committerPhilippe Charnier <charnier@FreeBSD.org>2003-06-08 10:17:24 +0000
commit82f7b9cd41da5b27f191a77733f168439daa5930 (patch)
tree75f14542fc671e65f3bb43e50f38576c46dc1d41 /lib/libcompat
parentab165955def905a55ec9ecf4dd2ed6e5df97f5c7 (diff)
downloadsrc-test-82f7b9cd41da5b27f191a77733f168439daa5930.tar.gz
src-test-82f7b9cd41da5b27f191a77733f168439daa5930.zip
Add section number with .Xr. .Xr -> .Vt changes.
Notes
Notes: svn path=/head/; revision=116026
Diffstat (limited to 'lib/libcompat')
-rw-r--r--lib/libcompat/regexp/regexp.38
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/libcompat/regexp/regexp.3 b/lib/libcompat/regexp/regexp.3
index 601ffbd66e51b..d4db21a57156c 100644
--- a/lib/libcompat/regexp/regexp.3
+++ b/lib/libcompat/regexp/regexp.3
@@ -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 ,