From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: Dynamic loading progress Date: Sat, 14 Feb 2015 10:39:01 +0200 Message-ID: <83zj8g3n16.fsf@gnu.org> References: <85oapy5kt6.fsf@stephe-leake.org> <83y4oiiw81.fsf@gnu.org> <838ugdf251.fsf@gnu.org> <54D80098.3020209@cs.ucla.edu> <54D85304.1030600@cs.ucla.edu> <54D9AC29.2020603@cs.ucla.edu> <54DA8539.1020905@cs.ucla.edu> <87zj8ktq8f.fsf@lifelogs.com> <54DD6413.1000403@cs.ucla.edu> <83wq3m436s.fsf@gnu.org> <54DDEB4D.5040300@dancol> <83egpt4zz6.fsf@gnu.org> <54DE12E9.5040606@dancol.org> <85twypiiug.fsf@stephe-leake.org> Reply-To: Eli Zaretskii NNTP-Posting-Host: plane.gmane.org X-Trace: ger.gmane.org 1423903164 1611 80.91.229.3 (14 Feb 2015 08:39:24 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 14 Feb 2015 08:39:24 +0000 (UTC) Cc: emacs-devel@gnu.org To: Stephen Leake Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Feb 14 09:39:15 2015 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 1YMYFu-0003MC-Ut for ged-emacs-devel@m.gmane.org; Sat, 14 Feb 2015 09:39:15 +0100 Original-Received: from localhost ([::1]:59161 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YMYFu-0005bN-B7 for ged-emacs-devel@m.gmane.org; Sat, 14 Feb 2015 03:39:14 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:33609) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YMYFr-0005b4-7b for emacs-devel@gnu.org; Sat, 14 Feb 2015 03:39:12 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YMYFj-0007xj-Bo for emacs-devel@gnu.org; Sat, 14 Feb 2015 03:39:11 -0500 Original-Received: from mtaout23.012.net.il ([80.179.55.175]:57637) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YMYFj-0007xf-3t for emacs-devel@gnu.org; Sat, 14 Feb 2015 03:39:03 -0500 Original-Received: from conversion-daemon.a-mtaout23.012.net.il by a-mtaout23.012.net.il (HyperSendmail v2007.08) id <0NJR007006OTYN00@a-mtaout23.012.net.il> for emacs-devel@gnu.org; Sat, 14 Feb 2015 10:39:01 +0200 (IST) Original-Received: from HOME-C4E4A596F7 ([87.69.4.28]) by a-mtaout23.012.net.il (HyperSendmail v2007.08) with ESMTPA id <0NJR0075X6P1SR90@a-mtaout23.012.net.il>; Sat, 14 Feb 2015 10:39:01 +0200 (IST) In-reply-to: <85twypiiug.fsf@stephe-leake.org> X-012-Sender: halo1@inter.net.il X-detected-operating-system: by eggs.gnu.org: Solaris 10 X-Received-From: 80.179.55.175 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 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-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:183044 Archived-At: > From: Stephen Leake > Date: Fri, 13 Feb 2015 15:48:07 -0600 > > My use case requires calling lisp functions; in particular, > put-text-property, but also other higher-level lisp functions in > ada-mode. Why do you need to call Lisp in the module? I think it's a no-no for modules to call Lisp; that should be done in the Lisp code that uses the module. > I need a compiled module to implement an LALR parser for the Ada > language that is fast enough for very large files. Why does an implementation of a parser need to call Lisp?