From ee753ec8cf4b7a821a95610327bfd75eaec8ecc1 Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Wed, 20 Dec 2000 11:07:03 +0000 Subject: [PATCH] (jka-compr-partial-uncompress): Don't use `concat' for numbers. --- lisp/jka-compr.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/jka-compr.el b/lisp/jka-compr.el index 682c46fc097..ae63d71c92e 100644 --- a/lisp/jka-compr.el +++ b/lisp/jka-compr.el @@ -291,7 +291,7 @@ to keep: LEN chars starting BEG chars from the beginning." ;; 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)) "")))) (unwind-protect (or (memq (call-process jka-compr-shell -- 2.39.2