From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Christopher League Newsgroups: gmane.emacs.bugs Subject: bug#49645: 28.0.50; Bookmark line highlighting remain stuck Date: Sun, 25 Jul 2021 10:34:54 -0400 Message-ID: <87wnpejwc1.fsf@contrapunctus.net> References: Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="33014"; mail-complaints-to="usenet@ciao.gmane.io" To: Marius Kjeldahl , 49645@debbugs.gnu.org Original-X-From: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane-mx.org@gnu.org Sun Jul 25 16:36:12 2021 Return-path: Envelope-to: geb-bug-gnu-emacs@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 1m7fEi-0008QA-8i for geb-bug-gnu-emacs@m.gmane-mx.org; Sun, 25 Jul 2021 16:36:12 +0200 Original-Received: from localhost ([::1]:58458 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1m7fEh-0002wO-7j for geb-bug-gnu-emacs@m.gmane-mx.org; Sun, 25 Jul 2021 10:36:11 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:39860) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1m7fEY-0002w8-M1 for bug-gnu-emacs@gnu.org; Sun, 25 Jul 2021 10:36:02 -0400 Original-Received: from debbugs.gnu.org ([209.51.188.43]:37562) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1m7fEY-00087s-Es for bug-gnu-emacs@gnu.org; Sun, 25 Jul 2021 10:36:02 -0400 Original-Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1m7fEY-00068u-AV for bug-gnu-emacs@gnu.org; Sun, 25 Jul 2021 10:36:02 -0400 X-Loop: help-debbugs@gnu.org Resent-From: Christopher League Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Sun, 25 Jul 2021 14:36:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 49645 X-GNU-PR-Package: emacs Original-Received: via spool by 49645-submit@debbugs.gnu.org id=B49645.162722370523543 (code B ref 49645); Sun, 25 Jul 2021 14:36:02 +0000 Original-Received: (at 49645) by debbugs.gnu.org; 25 Jul 2021 14:35:05 +0000 Original-Received: from localhost ([127.0.0.1]:49108 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m7fDd-00067e-7U for submit@debbugs.gnu.org; Sun, 25 Jul 2021 10:35:05 -0400 Original-Received: from relay1-d.mail.gandi.net ([217.70.183.193]:56853) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m7fDb-000674-3v for 49645@debbugs.gnu.org; Sun, 25 Jul 2021 10:35:04 -0400 Original-Received: (Authenticated sender: league@contrapunctus.net) by relay1-d.mail.gandi.net (Postfix) with ESMTPSA id 01AF7240003; Sun, 25 Jul 2021 14:34:55 +0000 (UTC) In-Reply-To: X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list X-BeenThere: bug-gnu-emacs@gnu.org List-Id: "Bug reports for GNU Emacs, the Swiss army knife of text editors" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane-mx.org@gnu.org Original-Sender: "bug-gnu-emacs" Xref: news.gmane.io gmane.emacs.bugs:210714 Archived-At: Marius Kjeldahl writes: > A few months ago highlighting the bookmark lines got turned on > by default. While it's possible to delete bookmarks, the > highlighting seems to remain stuck. Setting and clearing many > temporary bookmarks while working in code means the the code > gets littered with such highlights. I haven't found any way of > cleaning up those highlights, except killing the buffer and > reloading the file. I've turned it off by setting > bookmark-fontify. But surely, the current behaviour must be > considered a bug. Hi Marius, I think today we committed a fix for this issue of stuck bookmark highlights: https://git.savannah.gnu.org/cgit/emacs.git/commit/?id=3D142961bcdfb202ca33= 47a085e55c87b164bb2fb9 Can you confirm that it resolves the problem you saw? If you're not building from git regularly, you should be able to just download the most recent bookmark.el from here and =E2=80=98eval-buffer=E2=80=99 it to test: https://git.savannah.gnu.org/cgit/emacs.git/plain/lisp/bookmark.el In my analysis, clearing the highlight worked previously when using =E2=80=98bookmark-delete=E2=80=99, but not when overwriting an existi= ng bookmark with a new location. The current version should fix it. Thanks. CL