comparison lisp/jka-compr.el @ 53304:b9463f85fb04

(jka-compr-insert-file-contents): Avoid error when file not found.
author Andreas Schwab <schwab@suse.de>
date Thu, 25 Dec 2003 11:05:57 +0000
parents 695cf19ef79e
children 79093b308520
comparison
equal deleted inserted replaced
53303:9e3a6298633c 53304:b9463f85fb04
588 (and 588 (and
589 local-copy 589 local-copy
590 (file-exists-p local-copy) 590 (file-exists-p local-copy)
591 (delete-file local-copy))) 591 (delete-file local-copy)))
592 592
593 (decode-coding-inserted-region 593 (unless notfound
594 (point) (+ (point) size) 594 (decode-coding-inserted-region
595 (jka-compr-byte-compiler-base-file-name file) 595 (point) (+ (point) size)
596 visit beg end replace) 596 (jka-compr-byte-compiler-base-file-name file)
597 visit beg end replace))
597 598
598 (and 599 (and
599 visit 600 visit
600 (progn 601 (progn
601 (unlock-buffer) 602 (unlock-buffer)