From: Stefan Monnier Date: Tue, 19 Nov 2002 15:56:01 +0000 (+0000) Subject: (binhex-decode-region): Don't hardcode point-min == 1. X-Git-Tag: ttn-vms-21-2-B4~12335 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e429e0b87fbb250e6656d62d356c96246f54afd8;p=emacs.git (binhex-decode-region): Don't hardcode point-min == 1. --- diff --git a/lisp/gnus/binhex.el b/lisp/gnus/binhex.el index b70fb0e728e..40e9051e134 100644 --- a/lisp/gnus/binhex.el +++ b/lisp/gnus/binhex.el @@ -232,7 +232,7 @@ If HEADER-ONLY is non-nil only decode header and return filename." (>= (buffer-size) data-fork-start))) (progn (binhex-verify-crc work-buffer - 1 data-fork-start) + (point-min) data-fork-start) (setq header (binhex-header work-buffer)) (if header-only (setq tmp nil counter 0)))) (setq tmp (and tmp (not (eq inputpos end)))))