From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Mats Lidell Newsgroups: gmane.emacs.devel Subject: Re: Odd behavior when moving point over invisible text Date: Mon, 05 Jun 2023 21:38:24 +0200 Message-ID: <87zg5daedr.fsf@gnu.org> References: <87cz2ac390.fsf@gnu.org> <87y1kybd1a.fsf@red-bean.com> <83h6rm3vqc.fsf@gnu.org> Mime-Version: 1.0 Content-Type: text/plain Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="27790"; mail-complaints-to="usenet@ciao.gmane.io" User-Agent: Gnus/5.13 (Gnus v5.13) Cc: Karl Fogel , emacs-devel@gnu.org To: Eli Zaretskii Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Mon Jun 05 21:39:27 2023 Return-path: Envelope-to: ged-emacs-devel@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1q6G34-00074A-OK for ged-emacs-devel@m.gmane-mx.org; Mon, 05 Jun 2023 21:39:26 +0200 Original-Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1q6G2A-0001H3-7m; Mon, 05 Jun 2023 15:38:30 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1q6G29-0001Gn-2A for emacs-devel@gnu.org; Mon, 05 Jun 2023 15:38:29 -0400 Original-Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1q6G28-0001Qh-Ed; Mon, 05 Jun 2023 15:38:28 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:Date:References:In-Reply-To:Subject:To: From; bh=7O1ZucL1cGNrGIe86tqWAZP5WDQ1ff+YT8XZEH3O4uc=; b=MmIXhnm3wZHpdCJJZ+Kf GIirQuIPBQLyof/cOolEWJtEUMYGXJx2JSBycYlZnShQujAM5dIczc6ksILtYQiFOnT/1JAfbr922 cyakJtkqH/sJp+utyV08SKLLDtchMl5uiV9iQjuZ70OdJmMHjVAMNxwXuUQ0LvBDcBzVFT1cmoeVU efvrrZMxX3n10hZ5AulBicEgCHLY0RIUYJf5PnuyYiNVWKg0VwuR/TOzZmCjSMOn+PdIEXMhqz+s+ lm+CVCa15NbgXaqoYRCQw+Q5LNtQHH56t6ZMJ9ngqTQbFqSAnS3pLQFf+G8LpN5JKZ0EAbF/1I8VZ 0x6ufiJR7ftFBg==; Original-Received: from c80-217-132-174.bredband.tele2.se ([80.217.132.174] helo=zerblatt) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1q6G27-0003hN-P2; Mon, 05 Jun 2023 15:38:28 -0400 In-Reply-To: <83h6rm3vqc.fsf@gnu.org> (Eli Zaretskii's message of "Mon, 05 Jun 2023 16:05:31 +0300") X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Xref: news.gmane.io gmane.emacs.devel:306657 Archived-At: > Eli Zaretskii writes: > The bug was that last point position was recorded in a global variable, and > M-x enters recursive-edit, which clobbered that variable's value with the > value from the minibuffer. Thanks for the clear description and fix. %% Mats