(binhex-decode-region): Don't hardcode point-min == 1.

This commit is contained in:
Stefan Monnier 2002-11-19 15:56:01 +00:00
parent 4e2ad9eaea
commit e429e0b87f

View file

@ -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)))))