# HG changeset patch # User Richard M. Stallman # Date 1005859029 0 # Node ID f11ecb854c22c165e8bf18e06f4f4d493546299e # Parent 568554f839e9a59cb7feecbbfdc02da5ac488fcf (jka-compr-partial-uncompress): Fix previous change. diff -r 568554f839e9 -r f11ecb854c22 lisp/jka-compr.el --- a/lisp/jka-compr.el Thu Nov 15 20:49:01 2001 +0000 +++ b/lisp/jka-compr.el Thu Nov 15 21:17:09 2001 +0000 @@ -310,7 +310,7 @@ ;; dd seems to be unreliable about ;; providing the last block. So, always ;; read one more than you think you need. - (if count (concat "count=" (1+ count)) ""))) + (if count (format "count=%d" (1+ count)) ""))) jka-compr-acceptable-retval-list) (jka-compr-error prog args infile message err-file)) (jka-compr-delete-temp-file err-file)))