mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-27 14:00:11 +01:00
libnm/generate-plugin-docs: don't replace newlines with spaces
That serves no purpose whatsoever.
This commit is contained in:
parent
612351471c
commit
6143e71464
1 changed files with 1 additions and 1 deletions
|
|
@ -133,7 +133,7 @@ sub process_data {
|
|||
$parsed_data{$this_key} = "$2\n";
|
||||
} elsif (/^\s*\**\s+(.*?)\s*$/) {
|
||||
die "Extra mess in a comment: $_" unless $this_key;
|
||||
$parsed_data{$this_key} .= $1 ? "$1\n" : " ";
|
||||
$parsed_data{$this_key} .= "$1\n";
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue