aboutsummaryrefslogtreecommitdiff
path: root/packages/patches
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2006-06-14 14:59:49 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2006-06-14 14:59:49 +0000
commitdbd7a15107eab5a7131d7f3aa58f7de9ca0ff162 (patch)
tree3e043575a54563440176d94362b4b433ca3ee1ed /packages/patches
parent55bc5c52da07224977929d93113d1c9871402f1e (diff)
added patch that's already been accepted into 0.40
svn path=/trunk/; revision=5233
Diffstat (limited to 'packages/patches')
-rw-r--r--packages/patches/TODO11
-rw-r--r--packages/patches/number_bug_list_bug-0.39.2.patch35
2 files changed, 45 insertions, 1 deletions
diff --git a/packages/patches/TODO b/packages/patches/TODO
index 841a07e7..c073e514 100644
--- a/packages/patches/TODO
+++ b/packages/patches/TODO
@@ -1,3 +1,12 @@
-- port packages/patches/libdir-0.38.4.patch to 0.39.2
+- check out Mac/Intel patches
+
+
+----------------------
+Patches accepted into 0.40
+----------------------
+
+- number_bug_list_bug-0.39.2.patch
+- help_browser-0.39.2.patch
+- mingw_fixes-0.39-2.patch
diff --git a/packages/patches/number_bug_list_bug-0.39.2.patch b/packages/patches/number_bug_list_bug-0.39.2.patch
new file mode 100644
index 00000000..9690a067
--- /dev/null
+++ b/packages/patches/number_bug_list_bug-0.39.2.patch
@@ -0,0 +1,35 @@
+Index: g_text.c
+===================================================================
+RCS file: /cvsroot/pure-data/pd/src/g_text.c,v
+retrieving revision 1.11
+diff -u -w -r1.11 g_text.c
+--- g_text.c 15 Sep 2005 03:17:27 -0000 1.11
++++ g_text.c 14 Jun 2006 14:56:36 -0000
+@@ -566,6 +566,19 @@
+ gatom_bang(x);
+ }
+
++ /* We need a list method because, since there's both an "inlet" and a
++ "nofirstin" flag, the standard list behavior gets confused. */
++static void gatom_list(t_gatom *x, t_symbol *s, int argc, t_atom *argv)
++{
++ if (!argc)
++ gatom_bang(x);
++ else if (argv->a_type == A_FLOAT)
++ gatom_float(x, argv->a_w.w_float);
++ else if (argv->a_type == A_SYMBOL)
++ gatom_symbol(x, argv->a_w.w_symbol);
++ else pd_error(x, "gatom_list: need float or symbol");
++}
++
+ static void gatom_motion(void *z, t_floatarg dx, t_floatarg dy)
+ {
+ t_gatom *x = (t_gatom *)z;
+@@ -1349,6 +1362,7 @@
+ class_addbang(gatom_class, gatom_bang);
+ class_addfloat(gatom_class, gatom_float);
+ class_addsymbol(gatom_class, gatom_symbol);
++ class_addlist(gatom_class, gatom_list);
+ class_addmethod(gatom_class, (t_method)gatom_set, gensym("set"),
+ A_GIMME, 0);
+ class_addmethod(gatom_class, (t_method)gatom_click, gensym("click"),