diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2020-11-01 19:09:53 +0200 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2022-07-12 18:10:08 +0300 |
commit | 3b40a0792ee5ba0dd4d9ab129b4443585bbfdd14 (patch) | |
tree | fbd89e9a0bf71f3abbcd7f0857e10af2a0e7af12 | |
parent | xz: Protect the ellipsis (...) on the man page with \&. (diff) | |
download | xz-3b40a0792ee5ba0dd4d9ab129b4443585bbfdd14.tar.xz |
xz: Use non-breaking spaces when intentionally using more than one space.
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.
-rw-r--r-- | src/xz/xz.1 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xz/xz.1 b/src/xz/xz.1 index 5f668a24..755460fe 100644 --- a/src/xz/xz.1 +++ b/src/xz/xz.1 @@ -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" |