summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Kerrisk <mtk.manpages@gmail.com>2014-03-18 16:29:34 +0100
committerMichael Kerrisk <mtk.manpages@gmail.com>2014-03-18 16:29:34 +0100
commit89851a00549b7ff9b9223ab27fa50f2f896f345c (patch)
tree4ccc2e223f913c1ae908a709269475252b9fbb96
parent52d06f483db99e33cff1ba06fa9f4eecc4149385 (diff)
Removed trailing white space at end of lines
-rw-r--r--man2/open.26
-rw-r--r--man3/duplocale.32
-rw-r--r--man3/isalpha.32
-rw-r--r--man3/mbstowcs.318
-rw-r--r--man3/newlocale.32
-rw-r--r--man7/locale.74
6 files changed, 17 insertions, 17 deletions
diff --git a/man2/open.2 b/man2/open.2
index fbbd974f3..82e1cfaa1 100644
--- a/man2/open.2
+++ b/man2/open.2
@@ -1098,7 +1098,7 @@ it must at least support the use of
.BR O_SYNC
for regular files.
-Linux implements
+Linux implements
.BR O_SYNC
and
.BR O_DSYNC ,
@@ -1146,7 +1146,7 @@ would also always flush the last modification timestamp metadata).
Before Linux 2.6.33, Linux implemented only the
.BR O_SYNC
-flag for
+flag for
.BR open ().
However, when that flag was specified,
most filesystems actually provided the equivalent of synchronized I/O
@@ -1165,7 +1165,7 @@ was defined with the same value as the historical
.BR O_SYNC ,
and
.BR O_SYNC
-was defined as a new (two-bit) flag value that includes the
+was defined as a new (two-bit) flag value that includes the
.BR O_DSYNC
flag value.
This ensures that applications compiled against
diff --git a/man3/duplocale.3 b/man3/duplocale.3
index 1e8a48552..bb54301ff 100644
--- a/man3/duplocale.3
+++ b/man3/duplocale.3
@@ -167,7 +167,7 @@ main(int argc, char *argv[])
nloc = duplocale(loc);
if (nloc == (locale_t) 0)
errExit("duplocale");
-
+
for (p = argv[1]; *p; p++)
putchar(toupper_l(*p, nloc));
diff --git a/man3/isalpha.3 b/man3/isalpha.3
index 53a9ef44d..ae792a8f0 100644
--- a/man3/isalpha.3
+++ b/man3/isalpha.3
@@ -276,7 +276,7 @@ but not
and
.BR isblank ().
POSIX.1-2001
-also specifies those functions, and also
+also specifies those functions, and also
.BR isascii ()
(as an XSI extension)
and
diff --git a/man3/mbstowcs.3 b/man3/mbstowcs.3
index 18111df53..d47d36985 100644
--- a/man3/mbstowcs.3
+++ b/man3/mbstowcs.3
@@ -120,11 +120,11 @@ Length of source string (excluding terminator):
6 multibyte characters
Wide character string is: Grüße! (6 characters)
- G alpha upper
- r alpha lower
- ü alpha lower
- ß alpha lower
- e alpha lower
+ G alpha upper
+ r alpha lower
+ ü alpha lower
+ ß alpha lower
+ e alpha lower
! !alpha
.fi
.in
@@ -157,7 +157,7 @@ main(int argc, char *argv[])
/* Calculate the length required to hold argv[2] converted to
a wide character string */
-
+
mbslen = mbstowcs(NULL, argv[2], 0);
if (mbslen == (size_t) \-1) {
perror("mbstowcs");
@@ -178,8 +178,8 @@ main(int argc, char *argv[])
perror("calloc");
exit(EXIT_FAILURE);
}
-
- /* Convert the multibyte character string in argv[2] to a
+
+ /* Convert the multibyte character string in argv[2] to a
wide character string */
if (mbstowcs(wcs, argv[2], mbslen + 1) == (size_t) \-1) {
@@ -192,7 +192,7 @@ main(int argc, char *argv[])
/* Now do some inspection of the classes of the characters in
the wide character string */
-
+
for (wp = wcs; *wp != 0; wp++) {
printf(" %lc ", (wint_t) *wp);
diff --git a/man3/newlocale.3 b/man3/newlocale.3
index ad2002a7a..08a784b1d 100644
--- a/man3/newlocale.3
+++ b/man3/newlocale.3
@@ -68,7 +68,7 @@ is
.IR "(locale_t)\ 0" ,
a new object is created.
.IP *
-If
+If
.I base
refers to valid existing locale object
(i.e., an object returned by a previous call to
diff --git a/man7/locale.7 b/man7/locale.7
index f1993c13a..1c7710fb5 100644
--- a/man7/locale.7
+++ b/man7/locale.7
@@ -293,7 +293,7 @@ struct lconv {
POSIX.1-2008 standardized a number of extensions to the locale API,
based on implementations that first appeared in version 2.3
of the GNU C library.
-These extensions are designed to address the problem that
+These extensions are designed to address the problem that
the traditional locale APIs do not mix well with multithreaded applications
and with applications that must deal with multiple locales.
@@ -312,7 +312,7 @@ to allow the specification of a locale object that should apply when
executing the function.
.SH CONFORMING TO
POSIX.1-2001.
-.\"
+.\"
.\" The GNU gettext functions are specified in LI18NUX2000.
.SH SEE ALSO
.BR locale (1),