GNU bug report logs -
#21389
bogus diagnostic about unused lexical variable in eshell/time
Previous Next
Reported by: Paul Eggert <eggert <at> cs.ucla.edu>
Date: Mon, 31 Aug 2015 21:37:02 UTC
Severity: minor
Done: Stefan Kangas <stefan <at> marxist.se>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
Your bug report
#21389: bogus diagnostic about unused lexical variable in eshell/time
which was filed against the emacs package, has been closed.
The explanation is attached below, along with your original report.
If you require more details, please reply to 21389 <at> debbugs.gnu.org.
--
21389: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=21389
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
Paul Eggert <eggert <at> cs.ucla.edu> writes:
> To reproduce the problem in a fresh build from Emacs master, do this:
>
> touch lisp/eshell/em-unix.el
> make
>
> The output will include the following lines:
>
> eshell/em-unix.el:933:1:Warning: Unused lexical variable ‘args’
> eshell/em-unix.el:963:1:Warning: Unused lexical argument ‘args’
>
> The first diagnostic is bogus. The second one is correct. Perhaps the byte
> compiler is getting confused by the second one and the confusion is affecting
> the first one.
>
> The first diagnostic is generated for code that starts off like this:
>
> (defun eshell/time (&rest args)
> "Implementation of \"time\" in Lisp."
> (let ((time-args (copy-alist args))
> ...
>
> so the lexical variable ‘args’ is being used.
This seems to have been fixed on current master, so I'm closing this bug
report.
[Message part 3 (message/rfc822, inline)]
To reproduce the problem in a fresh build from Emacs master, do this:
touch lisp/eshell/em-unix.el
make
The output will include the following lines:
eshell/em-unix.el:933:1:Warning: Unused lexical variable ‘args’
eshell/em-unix.el:963:1:Warning: Unused lexical argument ‘args’
The first diagnostic is bogus. The second one is correct. Perhaps the
byte compiler is getting confused by the second one and the confusion is
affecting the first one.
The first diagnostic is generated for code that starts off like this:
(defun eshell/time (&rest args)
"Implementation of \"time\" in Lisp."
(let ((time-args (copy-alist args))
...
so the lexical variable ‘args’ is being used.
This bug report was last modified 4 years and 304 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.