Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 830066a7 authored by Jani Nikula's avatar Jani Nikula
Browse files

kernel-doc/rst: blank lines in output are not needed



Current approach leads to two blank lines, while one is enough.

Signed-off-by: default avatarJani Nikula <jani.nikula@intel.com>
parent a0b96c2d
Loading
Loading
Loading
Loading
+1 −6
Original line number Diff line number Diff line
@@ -1786,12 +1786,7 @@ sub output_highlight_rst {
    die $@ if $@;

    foreach $line (split "\n", $contents) {
	if ($line eq "") {
	    print $lineprefix, $blankline;
	} else {
	    print $lineprefix, $line;
	}
	print "\n";
	print $lineprefix . $line . "\n";
    }
}