all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Stefan Kangas <stefankangas@gmail.com>
To: Richard Hansen <rhansen@rhansen.org>
Cc: 60187@debbugs.gnu.org
Subject: bug#60187: [PATCH] whitespace: Clear bob and eob markers in `whitespace-color-off'
Date: Wed, 10 Jan 2024 14:36:16 -0800	[thread overview]
Message-ID: <CADwFkm=9_Q7L=LoprwAtMavquvshNXkQB7uAPzFFAs1Ch=0fHQ@mail.gmail.com> (raw)
In-Reply-To: <28c4b5f7-79ab-c87d-889a-96e0c7390b95@rhansen.org> (Richard Hansen's message of "Mon, 19 Dec 2022 00:03:39 -0500")

Richard Hansen <rhansen@rhansen.org> writes:

> See attached.

Thanks for the patch and apologies for taking so long to reply.

Does this fix any particular issue or is this just a cleanup?

> From 225dc1f32c865a3b36eb9c6d3881b298c871e3a3 Mon Sep 17 00:00:00 2001
> From: Richard Hansen <rhansen@rhansen.org>
> Date: Wed, 14 Dec 2022 01:57:17 -0500
> Subject: [PATCH] whitespace: Clear bob and eob markers in
>  `whitespace-color-off'
>
> * lisp/whitespace.el (whitespace-color-off): Clear markers when
> turning off `whitespace-mode'.
> * test/lisp/whitespace-tests.el (whitespace-tests--clear-markers): Add
> a test.
> ---
>  lisp/whitespace.el            | 4 +++-
>  test/lisp/whitespace-tests.el | 6 ++++++
>  2 files changed, 9 insertions(+), 1 deletion(-)
>
> diff --git a/lisp/whitespace.el b/lisp/whitespace.el
> index 558be1841a..b747293eb4 100644
> --- a/lisp/whitespace.el
> +++ b/lisp/whitespace.el
> @@ -2220,7 +2220,9 @@ whitespace-color-off
>      (remove-hook 'clone-buffer-hook #'whitespace--clone t)
>      (remove-hook 'clone-indirect-buffer-hook #'whitespace--clone t)
>      (font-lock-remove-keywords nil whitespace-font-lock-keywords)
> -    (font-lock-flush)))
> +    (font-lock-flush)
> +    (set-marker whitespace-bob-marker nil)
> +    (set-marker whitespace-eob-marker nil)))
>
>  (defun whitespace-point--used (start end)
>    (let ((ostart (overlay-start whitespace-point--used)))
> diff --git a/test/lisp/whitespace-tests.el b/test/lisp/whitespace-tests.el
> index 7079c1ea5e..1780d6246d 100644
> --- a/test/lisp/whitespace-tests.el
> +++ b/test/lisp/whitespace-tests.el
> @@ -64,6 +64,12 @@ whitespace-tests--cleanup-string
>      (whitespace-cleanup)
>      (buffer-string)))
>
> +(ert-deftest whitespace-tests--clear-markers ()
> +  (whitespace-tests--with-test-buffer '(face empty)
> +    (whitespace-mode -1)
> +    (should (null (marker-buffer whitespace-bob-marker)))
> +    (should (null (marker-buffer whitespace-eob-marker)))))
> +
>  (ert-deftest whitespace-cleanup-eob ()
>    (let ((whitespace-style '(empty)))
>      (should (equal (whitespace-tests--cleanup-string "a\n")





      reply	other threads:[~2024-01-10 22:36 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-12-19  5:03 bug#60187: [PATCH] whitespace: Clear bob and eob markers in `whitespace-color-off' Richard Hansen
2024-01-10 22:36 ` Stefan Kangas [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='CADwFkm=9_Q7L=LoprwAtMavquvshNXkQB7uAPzFFAs1Ch=0fHQ@mail.gmail.com' \
    --to=stefankangas@gmail.com \
    --cc=60187@debbugs.gnu.org \
    --cc=rhansen@rhansen.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.