aboutsummaryrefslogtreecommitdiff
path: root/packages/patches
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2005-12-16 18:38:11 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2005-12-16 18:38:11 +0000
commit8476554bc26567564d6381e1b733579d5b45d881 (patch)
tree07a3134c21460e7183ea6516e1c2b7d87c51e219 /packages/patches
parentbe911ac82a45ca74b900aec72492400ca11374a4 (diff)
- Lots of bug fixes
- added script which searches thru all of the .pd_darwin files for dependencies from Fink. It then copies those libs into the Pd.app and sets everything up for them to be sourced by the objects. - added Guenter's quick hack to allow international characters in Pd patches svn path=/trunk/; revision=4241
Diffstat (limited to 'packages/patches')
-rw-r--r--packages/patches/special_character_support.patch18
1 files changed, 18 insertions, 0 deletions
diff --git a/packages/patches/special_character_support.patch b/packages/patches/special_character_support.patch
new file mode 100644
index 00000000..b526ee45
--- /dev/null
+++ b/packages/patches/special_character_support.patch
@@ -0,0 +1,18 @@
+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)
+ {
+ newsize = x->x_bufsize+1;
+ x->x_buf = resizebytes(x->x_buf, x->x_bufsize, newsize);