From unknown Thu Jun 19 14:05:46 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#53385 <53385@debbugs.gnu.org> To: bug#53385 <53385@debbugs.gnu.org> Subject: Status: 29.0.50; bug-fix for image-dired-delete-marked Reply-To: bug#53385 <53385@debbugs.gnu.org> Date: Thu, 19 Jun 2025 21:05:46 +0000 retitle 53385 29.0.50; bug-fix for image-dired-delete-marked reassign 53385 emacs submitter 53385 Peter M=C3=BCnster severity 53385 normal thanks From debbugs-submit-bounces@debbugs.gnu.org Thu Jan 20 05:07:46 2022 Received: (at submit) by debbugs.gnu.org; 20 Jan 2022 10:07:46 +0000 Received: from localhost ([127.0.0.1]:56438 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nAUM6-0005Ug-2U for submit@debbugs.gnu.org; Thu, 20 Jan 2022 05:07:46 -0500 Received: from lists.gnu.org ([209.51.188.17]:51062) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nAUM4-0005UZ-HY for submit@debbugs.gnu.org; Thu, 20 Jan 2022 05:07:44 -0500 Received: from eggs.gnu.org ([209.51.188.92]:54912) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nAUM4-000114-BQ for bug-gnu-emacs@gnu.org; Thu, 20 Jan 2022 05:07:44 -0500 Received: from server.a16n.net ([178.33.238.77]:39162) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nAUM2-0007kg-3K for bug-gnu-emacs@gnu.org; Thu, 20 Jan 2022 05:07:43 -0500 Received: from ws.localdomain (arennes-651-1-231-133.w90-32.abo.wanadoo.fr [90.32.110.133]) by server.a16n.net (Postfix) with ESMTPSA id 27EA643E04E7 for ; Thu, 20 Jan 2022 11:07:38 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=a16n.net; s=a16n; t=1642673258; bh=XeB048ExIwTL6xSdm5SeXTuCo2OgMKm1mjwy+2Tk/2I=; h=From:To:Subject:Date; b=IUz8WQIf8N1UXPR01xpq9LJvJbnBnoP7PvDffbYSrbhy+sbhn9pMwgX/1rExddImw KcQl1e/QUFkwJJimgOL//xQbETUCpdl/gbh6WbTMmkkiwkh0xso54T9DgfIDDOCd/y 0k9RdtwaCMhJzkWSjohFoyEDfy1eyD9u3nmL6JRkC7pV2DXQnlbHcpEKKKSZIWCpC7 onCKi6qQmspqC4HDvAB6fKe0KukEWbrL3FOO6N/D0Wb5OXi5I0vYRXpVfevwedX1Ef GZhvntE7CpI4dHBac1LGDxMMCXVDTh7u77TUB5BQB/i/gEKQAQtgrjm6cOlHL9Bmuo iT67+woTWyirA== Received: by ws.localdomain (Postfix, from userid 1000) id 1A78E2058B; Thu, 20 Jan 2022 11:07:37 +0100 (CET) From: =?utf-8?Q?Peter_M=C3=BCnster?= To: Emacs Bugs Subject: 29.0.50; bug-fix for image-dired-delete-marked Date: Thu, 20 Jan 2022 11:07:36 +0100 Message-ID: <87mtjqzpnb.fsf@a16n.net> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/29.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha1; protocol="application/pgp-signature" Received-SPF: pass client-ip=178.33.238.77; envelope-from=pm@a16n.net; helo=server.a16n.net X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.3 (-) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.3 (--) --=-=-= Content-Type: text/plain Content-Transfer-Encoding: quoted-printable Hi, Please avoid, that backward-char signals an error: diff --git a/lisp/image-dired.el b/lisp/image-dired.el index b81df8567b..d5ed5d4ce8 100644 =2D-- a/lisp/image-dired.el +++ b/lisp/image-dired.el @@ -2353,7 +2351,8 @@ image-dired-delete-marked (interactive) (image-dired--with-marked (image-dired-delete-char) =2D (backward-char)) + (unless (bobp) + (backward-char))) (image-dired--line-up-with-method) (with-current-buffer (image-dired-associated-dired-buffer) (dired-do-delete))) TIA, =2D-=20 Peter --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iGoEARECACoWIQS/5hHRBUjla4uZVXU6jitvQ7HLaAUCYek0aAwccG1AYTE2bi5u ZXQACgkQOo4rb0Oxy2jMjwCfZ5ni0kWU2tksapJSEfyFFzw5tKEAn2PW7i+uv1rV yxM08XpApLIkXMbZ =5zop -----END PGP SIGNATURE----- --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Thu Jan 20 09:17:07 2022 Received: (at 53385) by debbugs.gnu.org; 20 Jan 2022 14:17:08 +0000 Received: from localhost ([127.0.0.1]:56933 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nAYFP-0006v9-Ja for submit@debbugs.gnu.org; Thu, 20 Jan 2022 09:17:07 -0500 Received: from quimby.gnus.org ([95.216.78.240]:50008) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nAYFO-0006pc-Dp for 53385@debbugs.gnu.org; Thu, 20 Jan 2022 09:17:07 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnus.org; s=20200322; h=Content-Transfer-Encoding:Content-Type:MIME-Version:Message-ID :In-Reply-To:Date:References:Subject:Cc:To:From:Sender:Reply-To:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:List-Id:List-Help:List-Unsubscribe:List-Subscribe: List-Post:List-Owner:List-Archive; bh=TFeTxJ4pgk4WMZf/oq9OBucO6r6xfBhWDaXesRa2sqE=; b=Sq3rSLQikAOqz14CeitjPucbKH ztnaYQczX5753BZdTtEJbK36uP8b036F+j2GH7SveOj+412buci6DnZ8QpZhEaQcIlogyv1xu2VD7 mCJQuxzOAIc0sNnKRH8PbQJ4XCM+/eF6Hnm++dNYjjdfJMSsk65ES86fi72Ko+4dpGz0=; Received: from [84.212.220.105] (helo=giant) by quimby.gnus.org with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1nAYFF-0006WQ-Sa; Thu, 20 Jan 2022 15:17:00 +0100 From: Lars Ingebrigtsen To: Peter =?utf-8?Q?M=C3=BCnster?= Subject: Re: bug#53385: 29.0.50; bug-fix for image-dired-delete-marked References: <87mtjqzpnb.fsf@a16n.net> X-Now-Playing: Joni Mitchell's _Archives: The Early Years (4)_: "Gift Of The Magi" Date: Thu, 20 Jan 2022 15:16:57 +0100 In-Reply-To: <87mtjqzpnb.fsf@a16n.net> ("Peter =?utf-8?Q?M=C3=BCnster=22's?= message of "Thu, 20 Jan 2022 11:07:36 +0100") Message-ID: <87zgnqxzja.fsf@gnus.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/29.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Report: Spam detection software, running on the system "quimby.gnus.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see @@CONTACT_ADDRESS@@ for details. Content preview: Peter Münster writes: > Please avoid, that backward-char signals an error: Thanks; applied to Emacs 29. Content analysis details: (-2.9 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 53385 Cc: 53385@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) Peter M=C3=BCnster writes: > Please avoid, that backward-char signals an error: Thanks; applied to Emacs 29. --=20 (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Thu Jan 20 09:17:13 2022 Received: (at control) by debbugs.gnu.org; 20 Jan 2022 14:17:13 +0000 Received: from localhost ([127.0.0.1]:56936 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nAYFU-0006zY-Se for submit@debbugs.gnu.org; Thu, 20 Jan 2022 09:17:13 -0500 Received: from quimby.gnus.org ([95.216.78.240]:50024) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nAYFS-0006tY-OE for control@debbugs.gnu.org; Thu, 20 Jan 2022 09:17:11 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnus.org; s=20200322; h=Subject:From:To:Message-Id:Date:Sender:Reply-To:Cc: MIME-Version:Content-Type:Content-Transfer-Encoding:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:In-Reply-To:References:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=cIigBZ1HtQMrvnfZu33Xy9Sw1xP+GeJY4TpuvU0G9gE=; b=hcBtE0g+Se7+IChqfNUGPuYzNU a+VogoRnpi07J6yYyCqR1aWwJg8fLaFHIgdPfEZ/fBEYGwNULYkBk0rLvhJwDKK2Xn+H3I9XG7CcK lQX7dc3tqXDeTsHk9hQa6J2/V1K6+DUbLddmrF1nBhX3RDnNvY++299ZCba84BnKfDKY=; Received: from [84.212.220.105] (helo=giant) by quimby.gnus.org with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1nAYFK-0006Wh-U5 for control@debbugs.gnu.org; Thu, 20 Jan 2022 15:17:05 +0100 Date: Thu, 20 Jan 2022 15:17:02 +0100 Message-Id: <87y23axzj5.fsf@gnus.org> To: control@debbugs.gnu.org From: Lars Ingebrigtsen Subject: control message for bug #53385 X-Spam-Report: Spam detection software, running on the system "quimby.gnus.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see @@CONTACT_ADDRESS@@ for details. Content preview: close 53385 29.1 quit Content analysis details: (-2.9 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) close 53385 29.1 quit From unknown Thu Jun 19 14:05:46 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Fri, 18 Feb 2022 12:24:14 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator