From 6143e71464254f6b866440744b45d985df36c472 Mon Sep 17 00:00:00 2001 From: Lubomir Rintel Date: Mon, 21 Nov 2016 18:11:27 +0100 Subject: [PATCH] libnm/generate-plugin-docs: don't replace newlines with spaces That serves no purpose whatsoever. --- libnm/generate-plugin-docs.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libnm/generate-plugin-docs.pl b/libnm/generate-plugin-docs.pl index 1d894bc481..405c6e1164 100755 --- a/libnm/generate-plugin-docs.pl +++ b/libnm/generate-plugin-docs.pl @@ -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"; } }