freebsd-ports/math/gnumeric2/files/patch-src::stf-parse.c
Joe Marcus Clarke 9300b7c32a Add gnumeric2 after a repo copy from gnumeric. Gnumeric2 is a sreadsheet
application for the GNOME 2 desktop.
2002-09-16 03:04:14 +00:00

12 lines
342 B
C

--- src/stf-parse.c.orig Thu Sep 12 00:21:07 2002
+++ src/stf-parse.c Thu Sep 12 00:21:59 2002
@@ -876,8 +876,7 @@
if (len == -1)
return (char *)s;
if (len > 1) {
- if (mbstowcs (&wstr, s, 1) == 1 &&
- !iswprint (wstr) && !iswspace (wstr))
+ if (mbstowcs (&wstr, s, 1) == 1)
return (char *)s;
s += len;
} else