diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2002-11-19 15:56:01 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2002-11-19 15:56:01 +0000 |
commit | e429e0b87fbb250e6656d62d356c96246f54afd8 (patch) | |
tree | eccc1b4df14e8924d7c705fc192a3ae3985ac6a7 /lisp/gnus/binhex.el | |
parent | 4e2ad9eaeaa8117a951f67a59f085efaf04f8423 (diff) | |
download | emacs-e429e0b87fbb250e6656d62d356c96246f54afd8.tar.gz |
(binhex-decode-region): Don't hardcode point-min == 1.
Diffstat (limited to 'lisp/gnus/binhex.el')
-rw-r--r-- | lisp/gnus/binhex.el | 2 |
1 files changed, 1 insertions, 1 deletions
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))))) |