[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[6411] iswspace -> isspace
From: |
Gavin D. Smith |
Subject: |
[6411] iswspace -> isspace |
Date: |
Sat, 11 Jul 2015 13:34:57 +0000 |
Revision: 6411
http://svn.sv.gnu.org/viewvc/?view=rev&root=texinfo&revision=6411
Author: gavin
Date: 2015-07-11 13:34:56 +0000 (Sat, 11 Jul 2015)
Log Message:
-----------
iswspace -> isspace
Modified Paths:
--------------
trunk/ChangeLog
trunk/tp/Texinfo/Convert/XSParagraph/mylib/xspara.c
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2015-07-11 12:42:21 UTC (rev 6410)
+++ trunk/ChangeLog 2015-07-11 13:34:56 UTC (rev 6411)
@@ -1,5 +1,11 @@
2015-07-11 Gavin Smith <address@hidden>
+ * tp/Texinfo/Convert/XSParagraph/mylib/xspara.c
+ (xspara_add_text) <space doubling in @w>: Change a call to
+ iswspace to a call to isspace. Reported by Eli Zaretskii.
+
+2015-07-11 Gavin Smith <address@hidden>
+
* tp/Texinfo/Convert/XSParagraph/mylib/xspara.c (xspara_hello):
If setting "en_US.UTF-8" as the locale fails, try basing a
locale name on the current locale name.
Modified: trunk/tp/Texinfo/Convert/XSParagraph/mylib/xspara.c
===================================================================
--- trunk/tp/Texinfo/Convert/XSParagraph/mylib/xspara.c 2015-07-11 12:42:21 UTC
(rev 6410)
+++ trunk/tp/Texinfo/Convert/XSParagraph/mylib/xspara.c 2015-07-11 13:34:56 UTC
(rev 6411)
@@ -691,7 +691,7 @@
*/
- if (ptr == state.word.text + 1 || !iswspace(ptr[-2]))
+ if (ptr == state.word.text + 1 || !isspace(ptr[-2]))
{
text_append_n (&state.word, " ", 1);
}
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [6411] iswspace -> isspace,
Gavin D. Smith <=