)
);
return if ( !$combine_ok );
+
+ # added for issue c352
+ if ($this_line_is_semicolon_terminated) {
+ $forced_breakpoint_to_go[$iend_1] = 0;
+ }
}
else {
# not a special type
);
return if ( !$combine_ok );
+
+ # added for issue c352
+ if ($this_line_is_semicolon_terminated) {
+ $forced_breakpoint_to_go[$iend_1] = 0;
+ }
}
# handle leading keyword..
--- /dev/null
+ # issue c352, recombine a small terminal quote
+ $text .= filter_blocks( $code, line( substr( $source, 0, $pos[0] ), $line ) ) . ")";
+ print( ( $Pipe->ResizeBuffer($NewSize) == $NewSize ) ? "Successful" : "Unsucessful" ) . "!\n\n";
+ my $func = 'encode_utf8(' . ( !defined $str ? 'undef' : is_utf8($str) ? '$utf8_str' : '$ascii_str' ) . ')';
--- /dev/null
+ # issue c352, recombine a small terminal quote
+ $text .= filter_blocks( $code,
+ line( substr( $source, 0, $pos[0] ), $line ) ) . ")";
+ print( ( $Pipe->ResizeBuffer($NewSize) == $NewSize )
+ ? "Successful"
+ : "Unsucessful" ) . "!\n\n";
+ my $func =
+ 'encode_utf8('
+ . ( !defined $str ? 'undef'
+ : is_utf8($str) ? '$utf8_str'
+ : '$ascii_str' ) . ')';
../snippets29.t dia.dia2
../snippets29.t dia.dia3
../snippets29.t git134.def
+../snippets29.t git135.def
+../snippets29.t git135.git135
../snippets3.t ce_wn1.ce_wn
../snippets3.t ce_wn1.def
../snippets3.t colin.colin
../snippets9.t rt98902.def
../snippets9.t rt98902.rt98902
../snippets9.t rt99961.def
-../snippets29.t git135.def
-../snippets29.t git135.git135
+../snippets29.t c352.def
#9 git134.def
#10 git135.def
#11 git135.git135
+#12 c352.def
# To locate test #13 you can search for its name or the string '#13'
############################
$rsources = {
+ 'c352' => <<'----------',
+ # issue c352, recombine a small terminal quote
+ $text .= filter_blocks( $code, line( substr( $source, 0, $pos[0] ), $line ) ) . ")";
+ print( ( $Pipe->ResizeBuffer($NewSize) == $NewSize ) ? "Successful" : "Unsucessful" ) . "!\n\n";
+ my $func = 'encode_utf8(' . ( !defined $str ? 'undef' : is_utf8($str) ? '$utf8_str' : '$ascii_str' ) . ')';
+----------
+
'dia' => <<'----------',
return $this->{'content'}[$row][$col];
return $this->{'content'}->[$row]->[$col];
#11...........
},
+
+ 'c352.def' => {
+ source => "c352",
+ params => "def",
+ expect => <<'#12...........',
+ # issue c352, recombine a small terminal quote
+ $text .= filter_blocks( $code,
+ line( substr( $source, 0, $pos[0] ), $line ) ) . ")";
+ print( ( $Pipe->ResizeBuffer($NewSize) == $NewSize )
+ ? "Successful"
+ : "Unsucessful" ) . "!\n\n";
+ my $func =
+ 'encode_utf8('
+ . ( !defined $str ? 'undef'
+ : is_utf8($str) ? '$utf8_str'
+ : '$ascii_str' ) . ')';
+#12...........
+ },
};
my $ntests = 0 + keys %{$rtests};