all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: "Stefan-W. Hahn" <stefan.hahn@s-hahn.de>
To: David Engster <deng@randomsample.de>
Cc: 22287@debbugs.gnu.org
Subject: bug#22287: 25.1.50; Sudden jumping point in buffer
Date: Sun, 3 Jan 2016 14:07:42 +0100	[thread overview]
Message-ID: <20160103130742.GA11570@scotty.home> (raw)
In-Reply-To: <87y4c6nbte.fsf@engster.org>

Mail von David Engster, Sun, 03 Jan 2016 at 12:26:37 +0100:

Hello,

> Stefan-W. Hahn writes:
> > - the point at the end of semanticdb-save-all-db-idle has changed!!
> 
> Thank you for investigating this so thoroughly. This is indeed some

Thanks.

> weird behavior and I'm no longer sure this is the same bug as 15045. I
> will try to reproduce this on my system.

I tried to get deeper yesterday and tried to check if a timer is called at
the end of semanticdb-save-all-db-idle.

For this I instrumented the code as follows:

,----
| diff --git a/src/alloc.c b/src/alloc.c
| index bee7cd1..4adb3d6 100644
| --- a/src/alloc.c
| +++ b/src/alloc.c
| @@ -7146,6 +7146,10 @@ do hash-consing of the objects allocated to pure space.  */);
|  	       doc: /* Non-nil means display messages at start and end of garbage collection.  */);
|    garbage_collection_messages = 0;
|  
| +  DEFVAR_BOOL ("my-safe-run-hooks", my_safe_run_hooks,
| +	       doc: /* Non-nil means display messages at start and end of garbage collection.  */);
| +  my_safe_run_hooks = 0;
| +
|    DEFVAR_LISP ("post-gc-hook", Vpost_gc_hook,
|  	       doc: /* Hook run after garbage collection has finished.  */);
|    Vpost_gc_hook = Qnil;
| diff --git a/src/fileio.c b/src/fileio.c
| index 6cda1e3..fb094df 100644
| --- a/src/fileio.c
| +++ b/src/fileio.c
| @@ -5499,7 +5499,9 @@ A non-nil CURRENT-ONLY argument means save only current buffer.  */)
|    Vquit_flag = Qnil;
|  
|    hook = intern ("auto-save-hook");
| +  my_safe_run_hooks = Qt;
|    safe_run_hooks (hook);
| +  my_safe_run_hooks = Qnil;
|  
|    if (STRINGP (Vauto_save_list_file_name))
|      {
| diff --git a/src/keyboard.c b/src/keyboard.c
| index 2449abb..00696cf 100644
| --- a/src/keyboard.c
| +++ b/src/keyboard.c
| @@ -7039,6 +7039,8 @@ process_pending_signals (void)
|  {
|    pending_signals = false;
|    handle_async_input ();
| +  if (garbage_collection_messages && my_safe_run_hooks)
| +    message1("*** handle atimers");
|    do_pending_atimers ();
|  }
|  
`----

and semanticdb-save-all-db-idle as described in the initial post.

With this I got (after starting and setting garbage-collection-messages t,
and doing stuff as described in the bug-report):

,----
| *** handle atimers [540 times]
| *** sem start: buffer intervals.c 49722
| *** sem: buffer intervals.c 49722
| *** input: rc=nil 49722 49722
| *** out: rc=nil 49722 49722
| *** sem: buffer intervals.c 49722
| *** input: rc=nil 49722 49722
| *** out: rc=nil 49722 49722
| *** sem: buffer intervals.c 49722
| *** input: rc=nil 49722 49722
| *** out: rc=nil 49722 49722
| *** sem: buffer intervals.c 49722
| *** input: rc=nil 49722 49722
| *** out: rc=nil 49722 49722
| *** sem: buffer intervals.c 49722
| *** input: rc=nil 49722 49722
| *** out: rc=nil 49722 49722
| *** sem: buffer intervals.c 49722
| *** input: rc=nil 49722 49722
| *** out: rc=nil 49722 49722
| *** handle atimers [10 times]
| *** sem end: buffer intervals.c 49392
| Auto-saving...done
| *** handle atimers [32 times]
`----

So a running timer is moving point!

Now I will try to find the desperado.

With kind regards,
Stefan

-- 
Stefan-W. Hahn                          It is easy to make things.
                                        It is hard to make things simple.





  reply	other threads:[~2016-01-03 13:07 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-01-01 11:10 bug#22287: 25.1.50; Sudden jumping point in buffer Stefan-W. Hahn
2016-01-03 11:26 ` David Engster
2016-01-03 13:07   ` Stefan-W. Hahn [this message]
2016-01-03 15:47     ` David Engster
2016-01-03 20:51       ` Stefan-W. Hahn
2016-01-04 15:22         ` Eli Zaretskii
2016-01-05 15:01           ` Stefan-W. Hahn
2016-01-05 16:27             ` Eli Zaretskii
2016-01-05 19:51               ` Stefan-W. Hahn
2016-01-05 20:12                 ` Eli Zaretskii
2016-01-05 21:08                   ` Stefan-W. Hahn
2016-01-06 14:13                   ` Stefan-W. Hahn
2016-01-06 21:52                     ` David Engster
2016-02-21 16:29                       ` David Engster
2016-01-04 15:22       ` Eli Zaretskii

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=20160103130742.GA11570@scotty.home \
    --to=stefan.hahn@s-hahn.de \
    --cc=22287@debbugs.gnu.org \
    --cc=deng@randomsample.de \
    /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.