summaryrefslogtreecommitdiff
path: root/math/gnumeric2/files/patch-src::stf-parse.c
diff options
context:
space:
mode:
Diffstat (limited to 'math/gnumeric2/files/patch-src::stf-parse.c')
-rw-r--r--math/gnumeric2/files/patch-src::stf-parse.c37
1 files changed, 0 insertions, 37 deletions
diff --git a/math/gnumeric2/files/patch-src::stf-parse.c b/math/gnumeric2/files/patch-src::stf-parse.c
deleted file mode 100644
index b0610997e852..000000000000
--- a/math/gnumeric2/files/patch-src::stf-parse.c
+++ /dev/null
@@ -1,37 +0,0 @@
-
-$FreeBSD$
-
---- src/stf-parse.c 2001/12/27 19:36:17 1.1
-+++ src/stf-parse.c 2001/12/27 19:44:24
-@@ -29,8 +29,6 @@
- #include "clipboard.h"
-
- #include <ctype.h>
--#include <wctype.h>
--#include <stdlib.h>
-
- #define WARN_TOO_MANY_ROWS _("Too many rows in data to parse: %d")
- #define WARN_TOO_MANY_COLS _("Too many columns in data to parse: %d")
-@@ -865,20 +863,9 @@
- wchar_t wstr;
- int len;
-
-- for (s = data; *s != '\0';) {
-- len = mblen(s, MB_CUR_MAX);
-- if (len == -1)
-+ for (s = data; *s != '\0'; s++) {
-+ if (!isprint (*s) && !isspace (*s))
- return (char *)s;
-- if (len > 1) {
-- if (mbstowcs (&wstr, s, 1) == 1 &&
-- !iswprint (wstr) && !iswspace (wstr))
-- return (char *)s;
-- s += len;
-- } else {
-- if (!isprint (*s) && !isspace (*s))
-- return (char *)s;
-- s++;
-- }
- }
-
- return NULL;