From xemacs-m  Fri Jan 31 17:25:52 1997
Received: from crystal.WonderWorks.COM (crystal.WonderWorks.com [192.203.206.1])
	by xemacs.org (8.8.5/8.8.5) with ESMTP id RAA15959
	for <xemacs-beta@xemacs.org>; Fri, 31 Jan 1997 17:25:50 -0600 (CST)
Received: by crystal.WonderWorks.COM 
	id QQcaxx19885; Fri, 31 Jan 1997 18:25:51 -0500 (EST)
Date: Fri, 31 Jan 1997 18:25:51 -0500 (EST)
Message-Id: <QQcaxx19885.199701312325@crystal.WonderWorks.COM>
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
From: Kyle Jones <kyle_jones@wonderworks.com>
To: xemacs-beta@xemacs.org
Subject: 20.0b93: decode-coding-region moves point

I don't know if decode-coding-region is supposed to move point
but it does.  Wrapping the call in save-excursion doesn't help---
save-excursion returns and point still has been moved.

To repeat, put the following text in *scratch*, go to point-max and then
type C-j.

    asdfasdfasdf

    (progn
      (goto-char 5)
      (save-excursion
	(decode-coding-region 1 6 'no-conversion))
      (message "point = %d, should be 5" (point)) (sleep-for 1)
    )

