emacs-bug-tracker
[Top][All Lists]
Advanced

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

[debbugs-tracker] bug#24738: closed (26.0.50; Incorrect Edebug spec for


From: GNU bug Tracking System
Subject: [debbugs-tracker] bug#24738: closed (26.0.50; Incorrect Edebug spec for seq-let)
Date: Mon, 24 Oct 2016 11:17:02 +0000

Your message dated Mon, 24 Oct 2016 13:16:26 +0200
with message-id <address@hidden>
and subject line Re: bug#24738: 26.0.50; Incorrect Edebug spec for seq-let
has caused the debbugs.gnu.org bug report #24738,
regarding 26.0.50; Incorrect Edebug spec for seq-let
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden)


-- 
24738: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=24738
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: 26.0.50; Incorrect Edebug spec for seq-let Date: Wed, 19 Oct 2016 08:44:35 -0700
The Edebug spec for seq-let is incorrect, causing code that uses it to
not work correctly while instrumented for debugging.

To reproduce:

1. emacs -Q
2. enter the following code into *scratch*:

(defun seq-let-bug ()
  (let ((nums [1 2 3 4 5]))
    (seq-let (a b c) nums
      (message "a=%s b=%s c=%s" a b c))))

3. C-u C-M-x
4. M-: (seq-let-bug) RET

Result: a=nil b=nil c=nil
Expected result: a=1 b=2 c=3

Changing seq-let's edebug spec to (debug (sexp form body))
fixes this for me.




--- End Message ---
--- Begin Message --- Subject: Re: bug#24738: 26.0.50; Incorrect Edebug spec for seq-let Date: Mon, 24 Oct 2016 13:16:26 +0200
Gemini Lasswell <address@hidden> writes:

> The Edebug spec for seq-let is incorrect, causing code that uses it to
> not work correctly while instrumented for debugging.

I pushed the fix in master, thanks!

Cheers,
Nico

Attachment: signature.asc
Description: PGP signature


--- End Message ---

reply via email to

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