GNU bug report logs -
#8711
24.0.50; binding _ to unused values with lexical-binding
Previous Next
Reported by: Helmut Eller <eller.helmut <at> gmail.com>
Date: Sat, 21 May 2011 18:45:02 UTC
Severity: minor
Found in versions 24.0.50, 26.0.50
Done: Lars Ingebrigtsen <larsi <at> gnus.org>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
Helmut Eller wrote:
> There seems be no way to avoid a warning in code like this:
> ;; -*- lexical-binding: t -*-
> (eval-when-compile (require 'cl))
> (defun foo (x) (destructuring-bind (_) x))
> (defun bar (x) (destructuring-bind (_) x (ignore _)))
> In foo the compiler complains because _ is never used and
> it bar it complains because it is used.
This latter is because cconv-analyse-use is not smart enough when
checking for use of variables starting with an underscore.
;; -*- lexical-binding: t -*-
(let ((_ nil))
(ignore _))
=>
Warning: variable `_' not left unused.
This despite ignore not touching it.
Lawrence
--
Lawrence Mitchell <wence <at> gmx.li>
This bug report was last modified 3 years and 11 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.