From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Michael Heerdegen Newsgroups: gmane.emacs.devel Subject: Re: [Ann]: An Implementation of the Shen programming language in Elisp and a call for help Date: Sat, 14 May 2016 03:41:17 +0200 Message-ID: <87k2ix5sci.fsf@web.de> References: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1463420694 29970 80.91.229.3 (16 May 2016 17:44:54 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 16 May 2016 17:44:54 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon May 16 19:44:47 2016 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1b2MZR-000243-Go for ged-emacs-devel@m.gmane.org; Mon, 16 May 2016 19:44:45 +0200 Original-Received: from localhost ([::1]:45482 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b2MZQ-0007LC-Iw for ged-emacs-devel@m.gmane.org; Mon, 16 May 2016 13:44:44 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:56637) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b2MY3-0005Fu-6A for emacs-devel@gnu.org; Mon, 16 May 2016 13:43:20 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1b2MXz-0004HI-AT for emacs-devel@gnu.org; Mon, 16 May 2016 13:43:17 -0400 Original-Received: from plane.gmane.org ([80.91.229.3]:36074) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b2MXz-0004Gr-3j for emacs-devel@gnu.org; Mon, 16 May 2016 13:43:15 -0400 Original-Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1b1Oa3-0003b8-Tu for emacs-devel@gnu.org; Sat, 14 May 2016 03:41:23 +0200 Original-Received: from dslb-094-217-122-112.094.217.pools.vodafone-ip.de ([94.217.122.112]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 14 May 2016 03:41:23 +0200 Original-Received: from michael_heerdegen by dslb-094-217-122-112.094.217.pools.vodafone-ip.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 14 May 2016 03:41:23 +0200 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 18 Original-X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: dslb-094-217-122-112.094.217.pools.vodafone-ip.de User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.0.93 (gnu/linux) Cancel-Lock: sha1:t9HDQp7aUW5bSMvwMfL3FGOdpwA= X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 80.91.229.3 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: "Emacs-devel" Xref: news.gmane.org gmane.emacs.devel:203861 Archived-At: aditya siram writes: > 1. I can't seem to get rid of warnings when byte-compiling the > generated "shen.el" [4] even though I have the byte-compile-warnings > property the top of the file. I'm getting a lot of "unused lexical > variable" warnings even though "lexical" is in the list of warnings. Hmm, the doc of `byte-compile-warnings' says: lexical global/dynamic variables lacking a prefix. So this flag apparently doesn't mean what you think (what probably most people think...) I'm not sure if it's possible to get rid of these warnings at all. Michael.