Module Name: src
Committed By: uwe
Date: Mon Jan 13 16:01:37 UTC 2020
Modified Files:
src/share/man/man3: dlfcn.3
Log Message:
Oops. Restore the dot lost in -width ".Dv ..."
To generate a diff of this commit:
cvs rdiff -u -r1.38 -r1.39 src/share/man/man3/dlfcn.3
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/share/man/man3/dlfcn.3
diff -u src/share/man/man3/dlfcn.3:1.38 src/share/man/man3/dlfcn.3:1.39
--- src/share/man/man3/dlfcn.3:1.38 Mon Jan 13 15:59:11 2020
+++ src/share/man/man3/dlfcn.3 Mon Jan 13 16:01:37 2020
@@ -1,4 +1,4 @@
-.\" $NetBSD: dlfcn.3,v 1.38 2020/01/13 15:59:11 uwe Exp $
+.\" $NetBSD: dlfcn.3,v 1.39 2020/01/13 16:01:37 uwe Exp $
.\"
.\" Copyright (c) 1998 The NetBSD Foundation, Inc.
.\" All rights reserved.
@@ -104,7 +104,7 @@ The
.Fa mode
parameter specifies symbol resolution time and symbol visibility.
One of the following values may be used to specify symbol resolution time:
-.Bl -tag -width "Dv RTLD_NODELETE" -offset indent
+.Bl -tag -width ".Dv RTLD_NODELETE" -offset indent
.It Dv RTLD_NOW
Symbols are resolved immediately.
.It Dv RTLD_LAZY
@@ -113,7 +113,7 @@ This is the default value if resolution
.El
.Pp
One of the following values may be used to specify symbol visibility:
-.Bl -tag -width "Dv RTLD_NODELETE" -offset indent
+.Bl -tag -width ".Dv RTLD_NODELETE" -offset indent
.It Dv RTLD_GLOBAL
The object's symbols and the symbols of its dependencies will be visible to
other objects.
@@ -135,7 +135,7 @@ then it is promoted to
Additionally, one of the following flags may be ORed into the
.Fa mode
argument:
-.Bl -tag -width "Dv RTLD_NODELETE" -offset indent
+.Bl -tag -width ".Dv RTLD_NODELETE" -offset indent
.It Dv RTLD_NODELETE
Prevents unload of the loaded object on
.Fn dlclose .