From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Joseph Turner Newsgroups: gmane.emacs.devel Subject: Re: [IDEA] Add function clean-buffer Date: Fri, 08 Sep 2023 10:21:18 -0700 Message-ID: <87il8ka88o.fsf@breatheoutbreathe.in> References: <87il8qx50p.fsf@breatheoutbreathe.in> <87ledm6i68.fsf@posteo.net> <87a5u0tmwd.fsf@breatheoutbreathe.in> <83cyyv342w.fsf@gnu.org> <878r9hw9cp.fsf@breatheoutbreathe.in> Mime-Version: 1.0 Content-Type: text/plain Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="17594"; mail-complaints-to="usenet@ciao.gmane.io" Cc: Eli Zaretskii , philipk@posteo.net, emacs-devel@gnu.org, mail+gh@daniel-mendler.de To: David Ponce Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Fri Sep 08 20:33:40 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 1qegIV-0004KW-H3 for ged-emacs-devel@m.gmane-mx.org; Fri, 08 Sep 2023 20:33:39 +0200 Original-Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1qegI6-00042D-I7; Fri, 08 Sep 2023 14:33:14 -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 1qefDe-0001m2-1z for emacs-devel@gnu.org; Fri, 08 Sep 2023 13:24:34 -0400 Original-Received: from out-212.mta1.migadu.com ([2001:41d0:203:375::d4]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qefDa-0006sb-8r for emacs-devel@gnu.org; Fri, 08 Sep 2023 13:24:33 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=breatheoutbreathe.in; s=key1; t=1694193866; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=yjxszTc8V3WI34KSb0B4sCUhps9fhtfsJTR2EntfDhU=; b=DUa4v/Dh/pZ2GbD5cGP4WEEsdiHgz+GgYh8tpnrp7bktiS99vVUE1bSX/TPHlRWZ7yLPld UFKaNz8oD3vMJbtT6ZBvZAF5KvQ86QQ0FZiPNV/x37Ki+EAW2UiCQh79zrDm1kHo2iF97o CaWOI0vjp7+cviTz1ilTG3woClTTph0= X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. In-reply-to: X-Migadu-Flow: FLOW_OUT Received-SPF: pass client-ip=2001:41d0:203:375::d4; envelope-from=joseph@breatheoutbreathe.in; helo=out-212.mta1.migadu.com 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_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Mailman-Approved-At: Fri, 08 Sep 2023 14:33:08 -0400 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:310353 Archived-At: > A naive question: is there any reason to not use the builtin > `delete-all-overlays' instead of an explicit loop, to delete > every overlay? I just extracted the code verbatim from clean-mode into clean-buffer. If others agree that delete-all-overlays would be more appropriate, I'll submit a second patch.