CVS commit: src/share/man/man9lua

2016-02-15 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Mon Feb 15 20:33:18 UTC 2016

Modified Files:
src/share/man/man9lua: pmf.9lua

Log Message:
fix english


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/share/man/man9lua/pmf.9lua

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/man9lua/pmf.9lua
diff -u src/share/man/man9lua/pmf.9lua:1.2 src/share/man/man9lua/pmf.9lua:1.3
--- src/share/man/man9lua/pmf.9lua:1.2	Mon Jan  6 13:03:33 2014
+++ src/share/man/man9lua/pmf.9lua	Mon Feb 15 20:33:18 2016
@@ -1,4 +1,4 @@
-.\"	$NetBSD: pmf.9lua,v 1.2 2014/01/06 13:03:33 wiz Exp $
+.\"	$NetBSD: pmf.9lua,v 1.3 2016/02/15 20:33:18 snj Exp $
 .\"
 .\" Copyright (c) 2013 Marc Balmer . All rights reserved.
 .\"
@@ -87,7 +87,7 @@ Returns nil if the key is not present.
 .Xr pmf 9 ,
 .Xr intro 9lua
 .Sh HISTORY
-An
+A
 .Nm
 Lua manual appeared in
 .Nx 7.0 .



CVS commit: src/share/man/man9lua

2014-01-06 Thread Thomas Klausner
Module Name:src
Committed By:   wiz
Date:   Mon Jan  6 13:05:47 UTC 2014

Removed Files:
src/share/man/man9lua: core.9lua

Log Message:
Remove core.9lua, now called systm.9lua.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r0 src/share/man/man9lua/core.9lua

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/share/man/man9lua

2014-01-06 Thread Thomas Klausner
Module Name:src
Committed By:   wiz
Date:   Mon Jan  6 13:03:33 UTC 2014

Modified Files:
src/share/man/man9lua: core.9lua pmf.9lua systm.9lua

Log Message:
Use more markup. Fix a typo.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/share/man/man9lua/core.9lua \
src/share/man/man9lua/pmf.9lua src/share/man/man9lua/systm.9lua

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/man9lua/core.9lua
diff -u src/share/man/man9lua/core.9lua:1.1 src/share/man/man9lua/core.9lua:1.2
--- src/share/man/man9lua/core.9lua:1.1	Tue Oct 29 08:34:07 2013
+++ src/share/man/man9lua/core.9lua	Mon Jan  6 13:03:33 2014
@@ -1,4 +1,4 @@
-.\"	$NetBSD: core.9lua,v 1.1 2013/10/29 08:34:07 mbalmer Exp $
+.\"	$NetBSD: core.9lua,v 1.2 2014/01/06 13:03:33 wiz Exp $
 .\"
 .\" Copyright (c) 2013 Marc Balmer . All rights reserved.
 .\"
@@ -65,7 +65,11 @@ Send
 to the console.
 .Pp
 .It Dv core.print_nolog(msg)
-The core.print_nolog() function is identical to the core.print() function,
+The
+.Fn core.print_nolog
+function is identical to the
+.Fn core.print
+function,
 except is does not send
 .Ar msg
 to lthe system og.
@@ -78,37 +82,53 @@ to the current process's controlling tty
 .It Dv core.aprint_normal(msg)
 Send
 .Ar msg
-to the console unless AB_QUIET is set.
+to the console unless
+.Dv AB_QUIET
+is set.
 Always sends to the log.
 .Pp
 .It Dv core.aprint_naive(msg)
 Send
 .Ar msg
-to the console only if AB_QUIET is set.
+to the console only if
+.Dv AB_QUIET
+is set.
 Never sends to the log.
 .Pp
 .It Dv core.aprint_verbose(msg)
 Send
 .Ar msg
-to the console only if AB_VERBOSE is set.
+to the console only if
+.Dv AB_VERBOSE
+is set.
 Always sends to the log.
 .Pp
 .It Dv core.aprint_debug(msg)
 Send
 .Ar msg
-to the console and the log only if AB_DEBUG is set.
+to the console and the log only if
+.Dv AB_DEBUG
+is set.
 .Pp
 .It Dv core.aprint_error(msg)
-Like core.aprint_normal(), but also keeps track of the number of times called.
+Like
+.Fn core.aprint_normal ,
+but also keeps track of the number of times called.
 This allows a subsystem to report the number of errors that occurred during a
 quiet or silent initialization phase.
 .Pp
 .It Dv count = core.aprint_get_error_count()
-The core.aprint_get_error_count() function reports the number of errors and
+The
+.Fn core.aprint_get_error_count
+function reports the number of errors and
 resets the counter to 0.
 .Pp
 .It Dv core.panic(msg)
-The core.panic() function terminates the NetBSD system.
+The
+.Fn core.panic
+function terminates the
+.Nx
+system.
 The message
 .Ar msg
 is printed to the console and saved in the variable
@@ -119,7 +139,7 @@ A newline character is added at the end 
 .Sh VARIABLES
 Upon initialisation, the
 .Nm
-module sets the following variables with the values of the correspondig kernel
+module sets the following variables with the values of the corresponding kernel
 variable:
 .Pp
 .Bl -tag -width  -compact
@@ -136,8 +156,8 @@ variable:
 .Sh SEE ALSO
 .Xr lua 1 ,
 .Xr luac 1 ,
-.Xr intro 9lua ,
-.Xr lua 4
+.Xr lua 4 ,
+.Xr intro 9lua
 .Sh HISTORY
 An
 .Nm
Index: src/share/man/man9lua/pmf.9lua
diff -u src/share/man/man9lua/pmf.9lua:1.1 src/share/man/man9lua/pmf.9lua:1.2
--- src/share/man/man9lua/pmf.9lua:1.1	Tue Oct 29 09:40:44 2013
+++ src/share/man/man9lua/pmf.9lua	Mon Jan  6 13:03:33 2014
@@ -1,4 +1,4 @@
-.\"	$NetBSD: pmf.9lua,v 1.1 2013/10/29 09:40:44 mbalmer Exp $
+.\"	$NetBSD: pmf.9lua,v 1.2 2014/01/06 13:03:33 wiz Exp $
 .\"
 .\" Copyright (c) 2013 Marc Balmer . All rights reserved.
 .\"
@@ -83,9 +83,9 @@ Returns nil if the key is not present.
 .Sh SEE ALSO
 .Xr lua 1 ,
 .Xr luac 1 ,
-.Xr intro 9lua ,
 .Xr lua 4 ,
-.Xr pmf 9
+.Xr pmf 9 ,
+.Xr intro 9lua
 .Sh HISTORY
 An
 .Nm
Index: src/share/man/man9lua/systm.9lua
diff -u src/share/man/man9lua/systm.9lua:1.1 src/share/man/man9lua/systm.9lua:1.2
--- src/share/man/man9lua/systm.9lua:1.1	Mon Dec 16 23:54:26 2013
+++ src/share/man/man9lua/systm.9lua	Mon Jan  6 13:03:33 2014
@@ -1,4 +1,4 @@
-.\"	$NetBSD: systm.9lua,v 1.1 2013/12/16 23:54:26 lneto Exp $
+.\"	$NetBSD: systm.9lua,v 1.2 2014/01/06 13:03:33 wiz Exp $
 .\"
 .\" Copyright (c) 2013 Marc Balmer . All rights reserved.
 .\"
@@ -65,7 +65,11 @@ Send
 to the console.
 .Pp
 .It Dv systm.print_nolog(msg)
-The systm.print_nolog() function is identical to the systm.print() function,
+The
+.Fn systm.print_nolog
+function is identical to the
+.Fn systm.print
+function,
 except is does not send
 .Ar msg
 to the system log.
@@ -99,16 +103,24 @@ Send
 to the console and the log only if AB_DEBUG is set.
 .Pp
 .It Dv systm.aprint_error(msg)
-Like systm.aprint_normal(), but also keeps track of the number of times called.
+Like
+.Fn systm.aprint_normal ,
+but also keeps track of the number of times called.
 This allows a subsystem to report the number of errors that occurred during a
 quiet or silent initialization phase.
 .P

CVS commit: src/share/man/man9lua

2014-01-06 Thread Thomas Klausner
Module Name:src
Committed By:   wiz
Date:   Mon Jan  6 13:03:01 UTC 2014

Modified Files:
src/share/man/man9lua: intro.9lua

Log Message:
Add xrefs to pmf(9lua) and systm(9lua)


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/share/man/man9lua/intro.9lua

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/man9lua/intro.9lua
diff -u src/share/man/man9lua/intro.9lua:1.3 src/share/man/man9lua/intro.9lua:1.4
--- src/share/man/man9lua/intro.9lua:1.3	Sat Oct 26 17:06:51 2013
+++ src/share/man/man9lua/intro.9lua	Mon Jan  6 13:03:01 2014
@@ -1,4 +1,4 @@
-.\"	$NetBSD: intro.9lua,v 1.3 2013/10/26 17:06:51 njoly Exp $
+.\"	$NetBSD: intro.9lua,v 1.4 2014/01/06 13:03:01 wiz Exp $
 .\"
 .\" Copyright (c) 2013 Marc Balmer . All rights reserved.
 .\"
@@ -40,7 +40,9 @@ functions, error returns and other commo
 .Xr lua 1 ,
 .Xr luac 1 ,
 .Xr intro 3lua ,
-.Xr lua 4
+.Xr lua 4 ,
+.Xr pmf 9lua ,
+.Xr systm 9lua
 .Sh HISTORY
 An
 .Nm



CVS commit: src/share/man/man9lua

2013-10-26 Thread Nicolas Joly
Module Name:src
Committed By:   njoly
Date:   Sat Oct 26 17:06:51 UTC 2013

Modified Files:
src/share/man/man9lua: intro.9lua

Log Message:
Kill extra El macro.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/share/man/man9lua/intro.9lua

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/man9lua/intro.9lua
diff -u src/share/man/man9lua/intro.9lua:1.2 src/share/man/man9lua/intro.9lua:1.3
--- src/share/man/man9lua/intro.9lua:1.2	Sat Oct 26 07:51:25 2013
+++ src/share/man/man9lua/intro.9lua	Sat Oct 26 17:06:51 2013
@@ -1,4 +1,4 @@
-.\"	$NetBSD: intro.9lua,v 1.2 2013/10/26 07:51:25 mbalmer Exp $
+.\"	$NetBSD: intro.9lua,v 1.3 2013/10/26 17:06:51 njoly Exp $
 .\"
 .\" Copyright (c) 2013 Marc Balmer . All rights reserved.
 .\"
@@ -36,7 +36,6 @@
 .Sh DESCRIPTION
 This section provides an overview of the Lua kernel bindings, their
 functions, error returns and other common definitions and concepts.
-.El
 .Sh SEE ALSO
 .Xr lua 1 ,
 .Xr luac 1 ,



CVS commit: src/share/man/man9lua

2013-10-26 Thread Marc Balmer
Module Name:src
Committed By:   mbalmer
Date:   Sat Oct 26 07:51:25 UTC 2013

Modified Files:
src/share/man/man9lua: intro.9lua

Log Message:
fix Dt


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/share/man/man9lua/intro.9lua

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/man9lua/intro.9lua
diff -u src/share/man/man9lua/intro.9lua:1.1 src/share/man/man9lua/intro.9lua:1.2
--- src/share/man/man9lua/intro.9lua:1.1	Sat Oct 26 07:42:18 2013
+++ src/share/man/man9lua/intro.9lua	Sat Oct 26 07:51:25 2013
@@ -1,4 +1,4 @@
-.\"	$NetBSD: intro.9lua,v 1.1 2013/10/26 07:42:18 mbalmer Exp $
+.\"	$NetBSD: intro.9lua,v 1.2 2013/10/26 07:51:25 mbalmer Exp $
 .\"
 .\" Copyright (c) 2013 Marc Balmer . All rights reserved.
 .\"
@@ -28,7 +28,7 @@
 .\"
 .\"
 .Dd October 26, 2013
-.Dt INTRO 3lua
+.Dt INTRO 9lua
 .Os
 .Sh NAME
 .Nm intro



CVS commit: src/share/man/man9lua

2013-10-26 Thread Marc Balmer
Module Name:src
Committed By:   mbalmer
Date:   Sat Oct 26 07:42:18 UTC 2013

Added Files:
src/share/man/man9lua: Makefile intro.9lua

Log Message:
place for 9lua man pages


To generate a diff of this commit:
cvs rdiff -u -r0 -r1.1 src/share/man/man9lua/Makefile \
src/share/man/man9lua/intro.9lua

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Added files:

Index: src/share/man/man9lua/Makefile
diff -u /dev/null src/share/man/man9lua/Makefile:1.1
--- /dev/null	Sat Oct 26 07:42:18 2013
+++ src/share/man/man9lua/Makefile	Sat Oct 26 07:42:18 2013
@@ -0,0 +1,6 @@
+#	$NetBSD: Makefile,v 1.1 2013/10/26 07:42:18 mbalmer Exp $
+
+MAN=	intro.9lua
+
+.include 
+.include 
Index: src/share/man/man9lua/intro.9lua
diff -u /dev/null src/share/man/man9lua/intro.9lua:1.1
--- /dev/null	Sat Oct 26 07:42:18 2013
+++ src/share/man/man9lua/intro.9lua	Sat Oct 26 07:42:18 2013
@@ -0,0 +1,49 @@
+.\"	$NetBSD: intro.9lua,v 1.1 2013/10/26 07:42:18 mbalmer Exp $
+.\"
+.\" Copyright (c) 2013 Marc Balmer . All rights reserved.
+.\"
+.\" Redistribution and use in source and binary forms, with or without
+.\" modification, are permitted provided that the following conditions
+.\" are met:
+.\" 1. Redistributions of source code must retain the above copyright
+.\"notice, this list of conditions and the following disclaimer.
+.\" 2. Redistributions in binary form must reproduce the above copyright
+.\"notice, this list of conditions and the following disclaimer in the
+.\"documentation and/or other materials provided with the distribution.
+.\" 3. Neither the name of the University nor the names of its contributors
+.\"may be used to endorse or promote products derived from this software
+.\"without specific prior written permission.
+.\"
+.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
+.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
+.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+.\" SUCH DAMAGE.
+.\"
+.\"
+.Dd October 26, 2013
+.Dt INTRO 3lua
+.Os
+.Sh NAME
+.Nm intro
+.Nd introduction to the Lua kernel bindings
+.Sh DESCRIPTION
+This section provides an overview of the Lua kernel bindings, their
+functions, error returns and other common definitions and concepts.
+.El
+.Sh SEE ALSO
+.Xr lua 1 ,
+.Xr luac 1 ,
+.Xr intro 3lua ,
+.Xr lua 4
+.Sh HISTORY
+An
+.Nm
+manual for Lua kernel bindings appeared in
+.Nx 7.0 .