unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
From: David Ponce <da_vid@orange.fr>
To: Robert Pluim <rpluim@gmail.com>
Cc: 40788@debbugs.gnu.org
Subject: bug#40788: 28.0.50; Error running timer ‘custom-magic-reset’
Date: Fri, 24 Apr 2020 17:56:42 +0200	[thread overview]
Message-ID: <444f86ec-6d0b-7134-5bb1-165549a7acb3@orange.fr> (raw)
In-Reply-To: <m21rodyu5h.fsf@gmail.com>

On 24/04/2020 13:56, Robert Pluim wrote:
>>>>>> On Thu, 23 Apr 2020 19:39:26 +0200 (CEST), David PONCE <da_vid@orange.fr> said:
> 
>      David> Hello again,
>      David> Below is a possible patch that seems to have fixed the issue for me.
>      David> But I am not sure the approach is correct
> 
> Rather than defining a new function, you can add an argument to the
> existing one. Something like (untested)

Hi Robert,

Sure, your patch is better :-)
I tested it, and I confirm it fixes the issue :-)
I also tested the below variant, because it seems to me that it is not
necessary to set the buffer when magic is nil, as there is nothing to do.

Please feel free to apply which version looks better to you.
Thanks!

diff --git a/home/dponce/installs/emacs/lisp/cus-edit.el b/cus-edit.el
index d3d17fd..490d905 100644
--- a/home/dponce/installs/emacs/lisp/cus-edit.el
+++ b/cus-edit.el
@@ -2102,11 +2102,12 @@ and `face'."
  	(insert " "))
        (widget-put widget :children children))))
  
-(defun custom-magic-reset (widget)
+(defun custom-magic-reset (widget &optional buffer)
    "Redraw the :custom-magic property of WIDGET."
    (let ((magic (widget-get widget :custom-magic)))
      (when magic
-      (widget-value-set magic (widget-value magic)))))
+      (with-current-buffer (or buffer (current-buffer))
+        (widget-value-set magic (widget-value magic))))))
  
  ;;; The `custom' Widget.
  
@@ -2217,7 +2218,7 @@ and `face'."
        ;; commands like `M-u' (that work on a region in the buffer)
        ;; will upcase the wrong part of the buffer, since more text has
        ;; been inserted before point.
-      (run-with-idle-timer 0.0 nil #'custom-magic-reset widget)
+      (run-with-idle-timer 0.0 nil #'custom-magic-reset widget (current-buffer))
        (apply 'widget-default-notify widget args))))
  
  (defun custom-redraw (widget)





  reply	other threads:[~2020-04-24 15:56 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-04-23  5:10 bug#40788: 28.0.50; Error running timer ‘custom-magic-reset’ David Ponce
2020-04-23 17:39 ` David PONCE
2020-04-24 11:56   ` Robert Pluim
2020-04-24 15:56     ` David Ponce [this message]
2020-07-21  8:39       ` Robert Pluim
2020-07-21 14:20         ` Eli Zaretskii
2020-07-21 14:39           ` Robert Pluim

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

  List information: https://www.gnu.org/software/emacs/

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

  git send-email \
    --in-reply-to=444f86ec-6d0b-7134-5bb1-165549a7acb3@orange.fr \
    --to=da_vid@orange.fr \
    --cc=40788@debbugs.gnu.org \
    --cc=rpluim@gmail.com \
    /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 public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).