]> git.ipfire.org Git - thirdparty/xz.git/commitdiff
xz: Use non-breaking spaces when intentionally using more than one space.
authorLasse Collin <lasse.collin@tukaani.org>
Sun, 1 Nov 2020 17:09:53 +0000 (19:09 +0200)
committerLasse Collin <lasse.collin@tukaani.org>
Sun, 1 Nov 2020 17:09:53 +0000 (19:09 +0200)
This silences some style checker warnings. Seems that spaces
in the beginning of a line don't need this treatment.

Thanks to Bjarni Ingi Gislason.

src/xz/xz.1

index 5f668a243e6a4cb7decb02840fadda3fafe41f70..755460fec80e2f09ca6d5daf6db0ed83819be7ff 100644 (file)
@@ -2591,7 +2591,7 @@ but if a limit has already been set, don't increase it:
 .PP
 .nf
 .ft CW
-NEWLIM=$((123 << 20))  # 123 MiB
+NEWLIM=$((123 << 20))\ \ # 123 MiB
 OLDLIM=$(xz \-\-robot \-\-info\-memory | cut \-f3)
 if [ $OLDLIM \-eq 0 \-o $OLDLIM \-gt $NEWLIM ]; then
     XZ_OPT="$XZ_OPT \-\-memlimit\-decompress=$NEWLIM"