emacs-devel
[Top][All Lists]
Advanced

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

Re: Edebug-x visual extensions to Edebug


From: Tassilo Horn
Subject: Re: Edebug-x visual extensions to Edebug
Date: Tue, 12 Mar 2013 15:10:23 +0100
User-agent: Gnus/5.130006 (Ma Gnus v0.6) Emacs/24.3.50 (gnu/linux)

Scott Barnett <address@hidden> writes:

Hi!

> I made a small extension to Edebug that highlights breakpoints, shows
> a list of currently instrumented functions and provides a couple of
> other extras to make Edebug easier for me to use.

Sounds great!

> If this is something that should be included please let me know of the
> next steps.

Except for the copyright assignment, there are at least two things I can
spot while glancing at the code that hinder its inclusion in emacs
proper.  The first one is that you shouldn't require cl, and the second
is the dependency to the external dash package.

With emacs 24 you can use `cl-restructuring-bind' and `cl-find-if'
instead of the unprefixed versions.

Instead of dash's `-each' you can use `mapc', instead of `-map' you can
use `mapcar', instead of `-remove' you can use `cl-remove-if', and
instead of `-contains?' you can use `member'.

Bye,
Tassilo



reply via email to

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