diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2008-06-18 21:45:19 +0300 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2008-06-18 21:45:19 +0300 |
commit | d25ab1b96178f06a0e724f58e3cd68300b2b1275 (patch) | |
tree | 102796da1bbf77816b98d8cc03c15536f82bb000 /src/liblzma/lzma/lzma_encoder.c | |
parent | Delete old code that was supposed to be already deleted (diff) | |
download | xz-d25ab1b96178f06a0e724f58e3cd68300b2b1275.tar.xz |
Comments
Diffstat (limited to '')
-rw-r--r-- | src/liblzma/lzma/lzma_encoder.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/liblzma/lzma/lzma_encoder.c b/src/liblzma/lzma/lzma_encoder.c index b0052182..e9de32c8 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] |