Escaping whitespace
From: Alejandro Colomar (man-pages) <hidden>
Date: 2021-01-05 21:57:52
Subsystem:
the rest · Maintainer:
Linus Torvalds
Hi Michael, While having a look at your latest commits, I saw that there's a bit of inconsistency in escaping whitespace (existing previous to the commit): Sometimes it's [!\ (], and sometimes it's [! (]. Regards, Alex P.S.: I have queue.3 derivatives almost ready. ......
+++ b/man2/setpgid.2@@ -88,8 +88,8 @@ Feature Test Macro Requirements for glibc (see .nf [These are available only before glibc 2.19] _BSD_SOURCE && - !\ (_POSIX_SOURCE || _POSIX_C_SOURCE || _XOPEN_SOURCE || - _GNU_SOURCE || _SVID_SOURCE) + !\ (_POSIX_SOURCE || _POSIX_C_SOURCE || _XOPEN_SOURCE + || _GNU_SOURCE || _SVID_SOURCE) .fi .SH DESCRIPTION All of these interfaces are available on Linux,
diff --git a/man2/wait4.2 b/man2/wait4.2
index faa63b30a..f45de09d1 100644
--- a/man2/wait4.2
+++ b/man2/wait4.2@@ -53,9 +53,9 @@ Feature Test Macro Requirements for glibc (see .BR wait3 (): .nf Since glibc 2.26: - _DEFAULT_SOURCE || - (_XOPEN_SOURCE\ >=\ 500 && - ! (_POSIX_C_SOURCE >= 200112L || _XOPEN_SOURCE >= 600)) + _DEFAULT_SOURCE + || (_XOPEN_SOURCE\ >=\ 500 && + ! (_POSIX_C_SOURCE >= 200112L || _XOPEN_SOURCE >= 600)) From glibc 2.19 to 2.25: _DEFAULT_SOURCE || _XOPEN_SOURCE\ >=\ 500 Glibc 2.19 and earlier:
--
Alejandro Colomar
Linux man-pages comaintainer; https://www.kernel.org/doc/man-pages/
http://www.alejandro-colomar.es/