diff options
author | Kenichi Handa <handa@m17n.org> | 2000-12-20 11:07:03 +0000 |
---|---|---|
committer | Kenichi Handa <handa@m17n.org> | 2000-12-20 11:07:03 +0000 |
commit | ee753ec8cf4b7a821a95610327bfd75eaec8ecc1 (patch) | |
tree | 011461650c2b6df1600c8348ebdd065af20caa59 /lisp/jka-compr.el | |
parent | b1a447b378fa3841bacd61a5d5bf7c9bcfb927a8 (diff) | |
download | emacs-ee753ec8cf4b7a821a95610327bfd75eaec8ecc1.tar.gz |
(jka-compr-partial-uncompress): Don't use `concat' for numbers.
Diffstat (limited to 'lisp/jka-compr.el')
-rw-r--r-- | lisp/jka-compr.el | 2 |
1 files changed, 1 insertions, 1 deletions
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 |