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

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

bug#28107: 26.0.50; Byte compilation shows an unused var warning for an


From: Glenn Morris
Subject: bug#28107: 26.0.50; Byte compilation shows an unused var warning for an used variable
Date: Thu, 17 Aug 2017 21:42:32 -0400
User-agent: Gnus (www.gnus.org), GNU Emacs (www.gnu.org/software/emacs/)

Tino Calancha wrote:

> ;; -*- lexical-binding: t; -*-
> (let ((x 1))
>   (and (equal (+ x 2) 3)))

This code also does nothing. Compare with:

(defun foo ()
  (let ((x 1))
   (and (equal (+ x 2) 3))))

where the result is used (as the function return) and there is no warning.





reply via email to

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