(jka-compr-write-region): Typo.

This commit is contained in:
Stefan Monnier 2008-05-28 17:37:04 +00:00
parent ba2b460a1b
commit 5e84e8f9ac

View file

@ -273,9 +273,9 @@ There should be no more than seven characters after the final `/'."
(equal (if (stringp start)
(substring start 0 (min (length start)
(length magic)))
(let ((from (or start (point-min)))
(to (min (or end (point-max))
(+ from (length magic)))))
(let* ((from (or start (point-min)))
(to (min (or end (point-max))
(+ from (length magic)))))
(buffer-substring from to)))
magic))))
(let ((can-append (jka-compr-info-can-append info))