Codebase list supercollider / 98720cd
Strip accidental gremlin characters that can cause problems for users in some locales Dan Stowell 11 years ago
3 changed file(s) with 25 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
44 * Fix caps in supercollider-emacs remove script. Closes: #681187
55 * Boost-atomic build fix for PPC
66 * Note copyright for file adapted from wmctrl project
7 * Strip accidental gremlin characters that can cause problems for users in
8 some locales
79
810 [ Felipe Sateler ]
911 * Fix FTBFS in big endian architectures
22 boost-big-endian-typo.patch
33 deactivate_perf_counter.patch
44 boostatomic_ppc_build.patch
5 strip_gremlin_characters.patch
0 Author: Dan Stowell
1 Description: Strip accidental gremlin characters that can cause problems for users in some locales. (Backported from upstream commit aeab35e3103d35)
2 --- a/SCClassLibrary/JITLib/ProxySpace/wrapForNodeProxy.sc
3 +++ b/SCClassLibrary/JITLib/ProxySpace/wrapForNodeProxy.sc
4 @@ -65,7 +65,7 @@
5
6 prepareForProxySynthDef { arg proxy;
7 proxy.initBus(\control, 1);
8 - ^{ÊDC.multiNewList([proxy.rate] ++ this) };
9 + ^{DC.multiNewList([proxy.rate] ++ this) };
10 }
11 }
12
13 @@ -82,7 +82,7 @@
14 +RawArray {
15 prepareForProxySynthDef { arg proxy;
16 proxy.initBus(\control, this.size);
17 - ^{ÊDC.multiNewList([proxy.rate] ++ this) };
18 + ^{DC.multiNewList([proxy.rate] ++ this) };
19 }
20 }
21