aboutsummaryrefslogtreecommitdiff
path: root/packages
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2009-01-10 19:55:58 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2009-01-10 19:55:58 +0000
commita0f3768e3c59b30761f7b4be61f4f28e2821a11d (patch)
tree6b07dece4f16860a02da6887b061053cf404876e /packages
parentd60174e1ce9bd7d18e1e6e9b9b4c1826d0dbd015 (diff)
miller accepted this patch
svn path=/trunk/; revision=10507
Diffstat (limited to 'packages')
-rw-r--r--packages/patches/special_character_support.patch18
1 files changed, 0 insertions, 18 deletions
diff --git a/packages/patches/special_character_support.patch b/packages/patches/special_character_support.patch
deleted file mode 100644
index dac8daaa..00000000
--- a/packages/patches/special_character_support.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-Index: g_rtext.c
-===================================================================
-RCS file: /cvsroot/pure-data/pd/src/g_rtext.c,v
-retrieving revision 1.4
-diff -u -w -r1.4 g_rtext.c
---- g_rtext.c 6 Sep 2004 20:20:34 -0000 1.4
-+++ g_rtext.c 14 Dec 2005 03:59:31 -0000
-@@ -432,7 +432,9 @@
- x->x_buf = resizebytes(x->x_buf, x->x_bufsize, newsize);
- x->x_bufsize = newsize;
-
-- if (n == '\n' || isprint(n))
-+/* at guenter's suggestion, this gets european characters working */
-+/* if (n == '\n' || isprint(n)) */
-+ if ((n == '\n' || n > 31) && n != 127)
- {
- newsize = x->x_bufsize+1;
- x->x_buf = resizebytes(x->x_buf, x->x_bufsize, newsize);