emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: 23.0.60; Occasional hangs in flyspell-mode and ispell-word


From: Lennart Borgman (gmail)
Subject: Re: 23.0.60; Occasional hangs in flyspell-mode and ispell-word
Date: Thu, 27 Mar 2008 22:27:30 +0100
User-agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.9) Gecko/20071031 Thunderbird/2.0.0.9 Mnenhy/0.7.5.666

Stefan Monnier wrote:
I personally use an Emacs patched as follows:

   Index: src/process.c
   ===================================================================
   RCS file: /sources/emacs/emacs/src/process.c,v
   retrieving revision 1.538
   diff -u -r1.538 process.c
   --- src/process.c    27 Mar 2008 20:52:24 -0000      1.538
   +++ src/process.c    27 Mar 2008 20:52:32 -0000
   @@ -4272,6 +4272,9 @@
      FD_ZERO (&Connecting);
    #endif
+ if (time_limit == 0 && wait_proc && !NILP (Vinhibit_quit))
   +    error ("Blocking call to accept-process-output with quit inhibited!!");
   +
      /* If wait_proc is a process to watch, set wait_channel accordingly.  */
      if (wait_proc != NULL)
        wait_channel = wait_proc->infd;

so the accept-process-output refuses to do its job if it's run with
quit-inhibited, which is the typical cause of problems such as the one
you're describing.  But your backtrace indicates that inhibit-quit is
(most likely) not set, so your problem seems to be different.

It is a bit off topic but why do you not apply this to the CVS sources?




reply via email to

[Prev in Thread] Current Thread [Next in Thread]