emacs-devel
[Top][All Lists]
Advanced

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

Re: debugging elisp ?


From: Jean-Christophe Helary
Subject: Re: debugging elisp ?
Date: Sun, 9 Jul 2017 20:58:18 +0900

> On Jul 9, 2017, at 20:48, Noam Postavsky <address@hidden> wrote:
> 
> On Sun, Jul 9, 2017 at 6:49 AM, Jean-Christophe Helary
> <address@hidden> wrote:
>> 
>> My limited understanding of the documentation tells me that I can't keep the 
>> debugger working during the whole package session. I can call it on 
>> package-list-packages and it will run until the package list is displayed, 
>> and then it quits.
>> 
>> Does that mean that I have to mark all the package functions for debugging ?
> 
> Yes, you can do that with the following code:
> 
> (require 'edebug)
> (require 'package)
> (mapatoms (lambda (s) (and (fboundp s)
>                      (string-match-p "\\`package" (symbol-name s)))
>            (edebug-instrument-function s)))

Thank you very much.

So there is no way I can run package without marking all the functions for 
debugging?

Jean-Christophe 


reply via email to

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