FreeBSD Bugzilla – Attachment 253710 Details for
Bug 281622
manuals: Fix "missing end of block" syntax errors
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
manuals: Fix "missing end of block" syntax errors
0001-manuals-Fix-missing-end-of-block-syntax-errors.patch (text/plain), 5.72 KB, created by
Graham Percival
on 2024-09-21 04:06:45 UTC
(
hide
)
Description:
manuals: Fix "missing end of block" syntax errors
Filename:
MIME Type:
Creator:
Graham Percival
Created:
2024-09-21 04:06:45 UTC
Size:
5.72 KB
patch
obsolete
>From de498d4068d51e8060dd4ce038000c130f783a40 Mon Sep 17 00:00:00 2001 >From: Graham Percival <gperciva@tarsnap.com> >Date: Fri, 20 Sep 2024 21:03:03 -0700 >Subject: [PATCH] manuals: Fix "missing end of block" syntax errors > >These were reported by `mandoc -T lint ...` as errors. Most of these >had no effect on the rendered man pages. > >share/man/man7/orders.7: fix typo that resulted in a warped display. > >share/man/man4/splash.4: end the display block, and remove the > .\".sh DIAGNOSTICS > which has been there (and commented out) since the first version of > this file in 1999-02-06. > >Signed-off-by: Graham Percival <gperciva@tarsnap.com> >Sponsored by: Tarsnap Backup Inc. >--- > lib/libc/gen/makecontext.3 | 1 + > lib/libc/posix1e/acl_cmp_np.3 | 1 + > lib/libc/posix1e/acl_extended_file_np.3 | 1 + > lib/libpathconv/abs2rel.3 | 2 +- > lib/libpathconv/rel2abs.3 | 1 + > sbin/init/init.8 | 1 + > sbin/pflowctl/pflowctl.8 | 1 + > share/man/man4/ahd.4 | 2 +- > share/man/man4/splash.4 | 2 +- > share/man/man7/orders.7 | 4 ++-- > share/man/man9/cdefs.9 | 2 ++ > 11 files changed, 13 insertions(+), 5 deletions(-) > >diff --git a/lib/libc/gen/makecontext.3 b/lib/libc/gen/makecontext.3 >index bcf836979962..198c541d40a6 100644 >--- a/lib/libc/gen/makecontext.3 >+++ b/lib/libc/gen/makecontext.3 >@@ -152,6 +152,7 @@ via > .Fn makecontext ; > portable applications should not rely on the implementation detail that > it may be possible to pass pointer arguments to functions. >+.Ef > .Sh HISTORY > The > .Fn makecontext >diff --git a/lib/libc/posix1e/acl_cmp_np.3 b/lib/libc/posix1e/acl_cmp_np.3 >index a8dca4959d2e..5e47df833d0d 100644 >--- a/lib/libc/posix1e/acl_cmp_np.3 >+++ b/lib/libc/posix1e/acl_cmp_np.3 >@@ -63,6 +63,7 @@ to the corresponding value: > .Bl -tag -width Er > .It Bq Er EINVAL > Either first or second argument does not point to a valid ACL. >+.El > .Sh SEE ALSO > .Xr acl 3 , > .Xr posix1e 3 >diff --git a/lib/libc/posix1e/acl_extended_file_np.3 b/lib/libc/posix1e/acl_extended_file_np.3 >index 26572be9d2b3..4673e9c3e417 100644 >--- a/lib/libc/posix1e/acl_extended_file_np.3 >+++ b/lib/libc/posix1e/acl_extended_file_np.3 >@@ -75,6 +75,7 @@ to the corresponding value: > .Bl -tag -width Er > .It Bq Er EACCES > Search permission is denied for a component of the path prefix. >+.El > .Sh SEE ALSO > .Xr extattr_get_file 2 , > .Xr posix1e 3 >diff --git a/lib/libpathconv/abs2rel.3 b/lib/libpathconv/abs2rel.3 >index 634f294800e4..98e8d74d7c3c 100644 >--- a/lib/libpathconv/abs2rel.3 >+++ b/lib/libpathconv/abs2rel.3 >@@ -92,7 +92,7 @@ argument is zero. > The > .Fa size > argument is greater than zero but smaller than the length of the pathname plus 1. >- >+.El > .Sh SEE ALSO > .Xr rel2abs 3 > .Sh AUTHORS >diff --git a/lib/libpathconv/rel2abs.3 b/lib/libpathconv/rel2abs.3 >index f889f427450d..1f607fd739e1 100644 >--- a/lib/libpathconv/rel2abs.3 >+++ b/lib/libpathconv/rel2abs.3 >@@ -90,6 +90,7 @@ argument is zero. > The > .Fa size > argument is greater than zero but smaller than the length of the pathname plus 1 >+.El > .Sh SEE ALSO > .Xr abs2rel 3 > .Sh AUTHORS >diff --git a/sbin/init/init.8 b/sbin/init/init.8 >index 4f988438cd35..8f6e78b79d7b 100644 >--- a/sbin/init/init.8 >+++ b/sbin/init/init.8 >@@ -396,6 +396,7 @@ back to the default, so that the > .Pa /etc/rc > script is executed with the standard shell > .Pa /bin/sh . >+.El > .Sh FILES > .Bl -tag -width /var/log/init.log -compact > .It Pa /dev/console >diff --git a/sbin/pflowctl/pflowctl.8 b/sbin/pflowctl/pflowctl.8 >index 8c4142f31396..407947613f6f 100644 >--- a/sbin/pflowctl/pflowctl.8 >+++ b/sbin/pflowctl/pflowctl.8 >@@ -83,6 +83,7 @@ and 10.0.0.2:1234 as destination: > .Bd -literal -offset indent > # pflowctl -s pflow0 src 10.0.0.1 dst 10.0.0.2:1234 > .Ed >+.El > .Sh SEE ALSO > .Xr netintro 4 , > .Xr pf 4 , >diff --git a/share/man/man4/ahd.4 b/share/man/man4/ahd.4 >index e7f9b73f085a..8ccf8bb44175 100644 >--- a/share/man/man4/ahd.4 >+++ b/share/man/man4/ahd.4 >@@ -120,7 +120,7 @@ units 0, 2, and 5. A value of 0x8a enables it for units 1, 3, and 7. > .Pp > Note that controllers can be dynamically configured through a device hint > documented below. >- >+.Ed > .Sh BOOT OPTIONS > The following options are switchable by setting values in > .Pa /boot/device.hints . >diff --git a/share/man/man4/splash.4 b/share/man/man4/splash.4 >index b001663c4fa5..f0522216173d 100644 >--- a/share/man/man4/splash.4 >+++ b/share/man/man4/splash.4 >@@ -253,7 +253,7 @@ and include the following lines: > .Bd -literal -offset indent > splash="/boot/images/freebsd-logo-rev.png" > boot_mute="YES" >-.\".Sh DIAGNOSTICS >+.Ed > .Sh SEE ALSO > .Xr vidcontrol 1 , > .Xr syscons 4 , >diff --git a/share/man/man7/orders.7 b/share/man/man7/orders.7 >index aef44adde125..c1c2c1200e42 100644 >--- a/share/man/man7/orders.7 >+++ b/share/man/man7/orders.7 >@@ -47,8 +47,8 @@ The following table lists common multiples of bytes. > .It Zettabyte Ta ZB Ta 2^70 Ta 10^21 > .It Yottabyte Ta YB Ta 2^80 Ta 10^24 > .It Ronnabyte Ta RB Ta 2^90 Ta 10^27 >-.It Quettabyte Ta QB Ta 2^100 Ta 10^30. >-El >+.It Quettabyte Ta QB Ta 2^100 Ta 10^30 >+.El > .Pp > The following table lists common bit rates as a power of ten. > .Bl -column -offset 2n \ >diff --git a/share/man/man9/cdefs.9 b/share/man/man9/cdefs.9 >index dd45e3f61a9f..1276051e8e98 100644 >--- a/share/man/man9/cdefs.9 >+++ b/share/man/man9/cdefs.9 >@@ -44,6 +44,7 @@ Due to testing constraints, tcc and pcc may not always work. > .It gcc Ta 12, 13, 14 > .It clang Ta 16, 17, 18 > .El >+.El > .Pp > Please note: Not every single minor versions of these compilers > will work or are supported. >@@ -402,6 +403,7 @@ extensions are visible, 0 otherwise. > .St -isoC-2011 > Appendix K 3.7.4.1 > extensions are visible, 0 otherwise. >+.El > .Sh Supported C++ Environments > .Fx > supports C++11 and newer standards fully. >-- >2.45.2 >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 281622
: 253710