(jka-compr-partial-uncompress): Don't use `concat' for numbers.
This commit is contained in:
parent
b1a447b378
commit
ee753ec8cf
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue