Michael Cadilhac <[EMAIL PROTECTED]> writes:

>   Hi !
>
>   I've some kind of a freeze  in a function being a process filter. My
>   problem is  that I can't figure  out where the infinite  loop is and
>   it's a random thing, so I can't use debug-on-entry.
>
>   This function not being called by the user, C-g is not canceling it,
>   so set debug-on-quit to t is useless.
>
>   So, is there a way to debug things like
>   (run-with-idle-timer 1 nil (lambda () (while t)))
>   ?

(run-with-idle-timer 1 nil (lambda nil (let (inhibit-quit)
  (while t))))

-- 
David Kastrup, Kriemhildstr. 15, 44793 Bochum
_______________________________________________
Help-gnu-emacs mailing list
Help-gnu-emacs@gnu.org
http://lists.gnu.org/mailman/listinfo/help-gnu-emacs

Reply via email to