From d25ab1b96178f06a0e724f58e3cd68300b2b1275 Mon Sep 17 00:00:00 2001 From: Lasse Collin Date: Wed, 18 Jun 2008 21:45:19 +0300 Subject: [PATCH] Comments --- src/liblzma/lzma/lzma_encoder.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/liblzma/lzma/lzma_encoder.c b/src/liblzma/lzma/lzma_encoder.c index b005218..e9de32c 100644 --- a/src/liblzma/lzma/lzma_encoder.c +++ b/src/liblzma/lzma/lzma_encoder.c @@ -18,10 +18,6 @@ // /////////////////////////////////////////////////////////////////////////////// -// NOTE: If you want to keep the line length in 80 characters, set -// tab width to 4 or less in your editor when editing this file. - - #include "lzma_encoder_private.h" #include "fastpos.h" @@ -340,7 +336,8 @@ lzma_lzma_encode(lzma_coder *coder, uint8_t *restrict out, // Get optimal match (repeat position and length). // Value ranges for pos: // - [0, REP_DISTANCES): repeated match - // - [REP_DISTANCES, UINT32_MAX): match at (pos - REP_DISTANCES) + // - [REP_DISTANCES, UINT32_MAX): + // match at (pos - REP_DISTANCES) // - UINT32_MAX: not a match but a literal // Value ranges for len: // - [MATCH_MIN_LEN, MATCH_MAX_LEN] -- 2.7.4