Felipe Gasper
Felipe Gasper
Is it possible to put the long neume itself at the start of a new line? -F > On Dec 31, 2019, at 17:02, Sebastian Malton wrote: > > ...
That would seem to defeat one of the benefits of Gregorio: that it (like TeX) separates content from presentation. I’m hardly capable of making the change myself, and Gregorio is...
Bugzilla: https://bz.apache.org/bugzilla/show_bug.cgi?id=61355
Note that, if the open() operates on $_[0] directly, then there’s no error. The problem seems to be from creating a reference to $_[0] and using that reference (even dereferenced!)...
An even simpler version: ``` use Test::More tests => 1; my $temp_file = '/tmp/foo'; unlink $temp_file; for ( 1 .. 3 ) { my $t_fh; #NOTE: Uncomment these, and the...
Simplest yet: ``` use Test::More tests => 1; for ( 1 .. 3 ) { my $t_fh; open( ${ \$t_fh }, '>', '/dev/null' ); } ok 1; ``` … and...
I’ve found before that simply skipping _GEN symbols fixes the issue: ``` sub walksymtable { my ($symref, $method, $recurse, $prefix) = @_; my $sym; my $ref; my $fullname; no strict...
> I've the feeling that the `B::Deparse::pp_refgen` also needs to be adjusted as part of your change Can you expand more on this, please? I could see removing the `anoncode`...
> It looks like that this is now dead code with your change > as a `refgen` is not holding one `anoncode` anymore Per PMs I’ve replaced the relevant sections...
> XS modules that generate optrees may still output that shape for some time to come, until they adopt the new ability. It'd be nice not to break them unnecessarily...