From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: =?UTF-8?Q?Aur=C3=A9lien_Aptel?= Newsgroups: gmane.emacs.help Subject: Re: How to define a function in Zile Lisp Date: Thu, 15 Nov 2012 07:33:20 +0100 Message-ID: References: <87r4nzt370.fsf@googlemail.com> <871ufyfwcw.fsf@thinkpad.tsdh.de> <87obj2pow8.fsf@googlemail.com> <878va52xkq.fsf@thinkpad.tsdh.de> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-Trace: ger.gmane.org 1352961217 27889 80.91.229.3 (15 Nov 2012 06:33:37 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 15 Nov 2012 06:33:37 +0000 (UTC) Cc: help-gnu-emacs@gnu.org To: Tassilo Horn Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Thu Nov 15 07:33:47 2012 Return-path: Envelope-to: geh-help-gnu-emacs@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 1TYt1F-0006Ev-Bn for geh-help-gnu-emacs@m.gmane.org; Thu, 15 Nov 2012 07:33:45 +0100 Original-Received: from localhost ([::1]:52830 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TYt15-00078W-Jz for geh-help-gnu-emacs@m.gmane.org; Thu, 15 Nov 2012 01:33:35 -0500 Original-Received: from eggs.gnu.org ([208.118.235.92]:38505) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TYt0y-00078J-Gg for help-gnu-emacs@gnu.org; Thu, 15 Nov 2012 01:33:31 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TYt0v-00005e-En for help-gnu-emacs@gnu.org; Thu, 15 Nov 2012 01:33:28 -0500 Original-Received: from mail-qc0-f169.google.com ([209.85.216.169]:53600) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TYt0r-0008WV-Fc; Thu, 15 Nov 2012 01:33:21 -0500 Original-Received: by mail-qc0-f169.google.com with SMTP id t2so964649qcq.0 for ; Wed, 14 Nov 2012 22:33:20 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type; bh=dd6sOASm6RvoH6mUdESrgSc9zd0l1zeIFfH6WKk9k/E=; b=CQgsecaR8NRi3vfhsnRa7pczwugA2IqmTVdjMwZGOHHsqm8yfgpKj2G10nVte/OvH2 0MSsHS4wQzmQEgpSuWlqF28X0Id6+NgLj2P3rbB9534oJtq6BTajjJ2HTmgjza9S/5Os LHRToIiRSK98y1OddjLIUHSeWUpSY54Z4bMlnveFaH29MWNR3UjJzZYZVLrtbTUeUFzs Gj8nJJSidk5W+4EwLA+O+Y7ID00YCMUr8BLkFesZJkMarcQG7I5kN75H1iVxHRxjMZR9 wk0sMSbgJhE4uQ6Ir9VnF7tKDx40edEYK+LXMFdFsENVWn6LsY4RJHz8SkPq0+4e0O5I kRog== Original-Received: by 10.49.3.102 with SMTP id b6mr122290qeb.26.1352961200726; Wed, 14 Nov 2012 22:33:20 -0800 (PST) Original-Received: by 10.49.81.176 with HTTP; Wed, 14 Nov 2012 22:33:20 -0800 (PST) In-Reply-To: <878va52xkq.fsf@thinkpad.tsdh.de> X-Google-Sender-Auth: G7kKtuPkuOXfIYQ1OmKiavygZBY X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x [fuzzy] X-Received-From: 209.85.216.169 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:87699 Archived-At: On Tue, Nov 13, 2012 at 6:59 PM, Tassilo Horn wrote: > As far as I know, GNU Zile has just been ported to Lua, and that version > will probably replace the C version at some point in time. That is > probably a bit easier to hack on. > > It's lisp interpreter (which doesn't implement more than the C version) > is this: > > http://git.savannah.gnu.org/cgit/zile.git/tree/src/lisp.lua?h=lua That's curious. I'm assuming Zile didn't want a Lisp interpreter because it would make it less "lightweight". Now that they have a full-fledged Lua interpreter, is Zile programmable in it? If not, what is the reason for not having a lisp interpreter ?