blob: 47103c282e894a305dc877e4ecd52628f94223da (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
--- src/lib/fte/dotcards.c.orig 1993-07-30 13:44:28.000000000 +0900
+++ src/lib/fte/dotcards.c 2013-05-01 05:07:55.000000000 +0900
@@ -405,11 +405,17 @@
char *string;
{
char buf[BSIZE_SP], *s, *t, *ss = string;
+ char *e;
+ e = string + strlen(string);
if (ciprefix("v(", string) && index(string, ',')) {
for (s = string; *s && (*s != ','); s++)
;
*s++ = '\0';
+ while (s + 1 < e && isspace(*(s + 1))) {
+ *(s + 1) = '\0';
+ s++;
+ }
for (t = s; *t && (*t != ')'); t++)
;
*t = '\0';
@@ -589,6 +595,10 @@
if (c)
*c = 0;
+ while (c + 1 < r && isspace(*(c + 1))) {
+ c++;
+ *c = '\0';
+ }
wl = alloc(struct wordlist);
|