GNU bug report logs -
#15326
24.3; Incorrect "variable not left unused" in destructuring cl-loop
Previous Next
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
Your message dated Fri, 27 Sep 2013 21:08:53 -0400
with message-id <jwv1u49vjml.fsf-monnier+bug#15326 <at> gnu.org>
and subject line Re: bug#15326: 24.3; Incorrect "variable not left unused" in destructuring cl-loop
has caused the debbugs.gnu.org bug report #15326,
regarding 24.3; Incorrect "variable not left unused" in destructuring cl-loop
to be marked as done.
(If you believe you have received this mail in error, please contact
help-debbugs <at> gnu.org.)
--
15326: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=15326
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
The byte compiler emits an invalid warning about used "_" lexical
variables in cl-loop destructuring bindings. This was casually mentioned
in bug#8711, where destructuring-bind was fixed (presumably, since it's
fine now) but not loop.
Create a source file like so,
;;; -*- lexical-binding: t; -*-
(require 'cl-lib)
(cl-loop for (_ value) in '((a 1) (b 2))
collect value)
Then compile,
$ emacs -Q -batch -f batch-byte-compile tmp.el
In toplevel form:
tmp.el:3:1:Warning: variable `_' not left unused
Wrote /tmp/tmp.elc
In the macro expansion, the _ is declared in a `let', then later set
with `setq', "using" it.
In GNU Emacs 24.3.1 (x86_64-pc-linux-gnu, GTK+ Version 3.8.2)
of 2013-06-25 on sochi, modified by Debian
Windowing system distributor `The X.Org Foundation', version 11.0.11204000
System Description: Debian GNU/Linux unstable (sid)
Configured using:
`configure '--build' 'x86_64-linux-gnu' '--build' 'x86_64-linux-gnu'
'--prefix=/usr' '--sharedstatedir=/var/lib' '--libexecdir=/usr/lib'
'--localstatedir=/var/lib' '--infodir=/usr/share/info'
'--mandir=/usr/share/man' '--with-pop=yes'
'--enable-locallisppath=/etc/emacs24:/etc/emacs:/usr/local/share/emacs/24.3/site-lisp:/usr/local/share/emacs/site-lisp:/usr/share/emacs/24.3/site-lisp:/usr/share/emacs/site-lisp'
'--with-crt-dir=/usr/lib/x86_64-linux-gnu' '--with-x=yes'
'--with-x-toolkit=gtk3' '--with-toolkit-scroll-bars'
'build_alias=x86_64-linux-gnu' 'CFLAGS=-g -O2 -fstack-protector
--param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall'
'LDFLAGS=-Wl,-z,relro' 'CPPFLAGS=-D_FORTIFY_SOURCE=2''
[Message part 3 (message/rfc822, inline)]
I have just installed a patch into trunk which changes the code
generated by `cl-loop' such that this warning should not appear
any more.
Stefan
This bug report was last modified 11 years and 241 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.