Skip to content

Commit 85afa0f

Browse files
committed
add an 'unimplemented' handler
1 parent 6722212 commit 85afa0f

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

Porting/merge-deltas.pl

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,12 @@ sub inject_items
184184
$delta->@[ $delta_pos .. $end_pos - 1 ];
185185
}
186186
},
187+
188+
# unimplemented
189+
'...' => sub ( $master, $title, $delta ) {
190+
my ( $master_pos, $delta_pos ) = find_pos_in( $master, $delta, $title );
191+
warn "Merging '$title' sections is not implemented yet\n";
192+
}
187193
);
188194

189195
my %ACTION_FOR = (
@@ -201,7 +207,7 @@ sub inject_items
201207
'Utility Changes' => 'head2',
202208
'Configuration and Compilation' => 'item',
203209
'Testing' => 'item',
204-
'Platform Support' => 'skip',
210+
'Platform Support' => '...',
205211
'Internal Changes' => 'item',
206212
'Selected Bug Fixes' => 'item',
207213
'Known Problems' => 'item',

0 commit comments

Comments
 (0)