From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: Emacs development... Date: Sat, 21 Aug 2021 11:10:10 +0300 Message-ID: <83k0kfz09p.fsf@gnu.org> References: <56B1C272-CB13-4793-930C-9F6B96F9856B@traduction-libre.org> <83r1enz453.fsf@gnu.org> Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="28703"; mail-complaints-to="usenet@ciao.gmane.io" Cc: emacs-devel@gnu.org To: Jean-Christophe Helary Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Sat Aug 21 10:11:01 2021 Return-path: Envelope-to: ged-emacs-devel@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1mHM5k-0007E1-Us for ged-emacs-devel@m.gmane-mx.org; Sat, 21 Aug 2021 10:11:00 +0200 Original-Received: from localhost ([::1]:60246 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1mHM5j-00028R-Ag for ged-emacs-devel@m.gmane-mx.org; Sat, 21 Aug 2021 04:10:59 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:40426) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1mHM5C-0001Rm-8q for emacs-devel@gnu.org; Sat, 21 Aug 2021 04:10:26 -0400 Original-Received: from fencepost.gnu.org ([2001:470:142:3::e]:39568) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1mHM5B-00032G-MH; Sat, 21 Aug 2021 04:10:25 -0400 Original-Received: from 84.94.185.95.cable.012.net.il ([84.94.185.95]:4097 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1mHM5B-00057u-6L; Sat, 21 Aug 2021 04:10:25 -0400 In-Reply-To: (message from Jean-Christophe Helary on Sat, 21 Aug 2021 16:08:54 +0900) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Original-Sender: "Emacs-devel" Xref: news.gmane.io gmane.emacs.devel:272774 Archived-At: > From: Jean-Christophe Helary > Date: Sat, 21 Aug 2021 16:08:54 +0900 > Cc: emacs-devel@gnu.org > > But when I run package.el to test it, I'd like to have a way to examine the values of variables as they evolve. Right now I use message and check the *Messages* buffer... It is not ideal. > > And there are probably a few other things that would make work easier but that I am not aware of because I am not a developer. The other alternative is Edebug, I think. You instrument the function where the variables in which you are interested live, then evaluate their values while stepping through that function (if Edebug didn't evaluate them automatically for you).