John Tobey <jtobey(a)channel1.com> writes:
I would like you folks' comments on the possibility of porting
Perlmacs (an embedding of Perl in GNU Emacs) to XEmacs.
I have mixed feelings about this. On the one hand, adding the feature
for the users who want it has always been a policy in XEmacs, as
opposed to FSF Emacs.
But on the other hand, I don't really see a use for Perlmacs in the
XEmacs core. XEmacs is based on Lisp, and it won't go away. Teaching
people to utilize the Lisp interpreter they have is a worthy goal
which I feel is threatened by allowing Perl to be used instead.
Perl is popular. Perl is hype. People who have never heard of Emacs
Lisp but know Perl, will want to use the new capabilities, and then
we'll be stuck with supporting Perl. I don't like that prospect.
I'll quit rambling and continue with the technical part.
However, Perlmacs' extensible type has two features which
lrecords
appear to lack. One is polymorphism. Instead of a constant string
stored directly in the virtual table, it has a type_of method which
returns a Lisp_Object.
Ability to dynamically create new lreacord types would be a good thing
regardless of Perlmacs. It's needed for instance to support DEFSTRUCT
properly, as well as for Bill's proposed Corba stuff.
The other feature is a "call" method which is invoked when
a Perl
coderef appears in the car of an evaluated list:
[...]
Implementing it like that would be a bad idea, I think. If we are to
do it, we should add a notion of "function" to XEmacs. The "function"
types are primitive types for which `functionp' evaluates to t.
Examples of function types are the current #<compiled-function> and
#<subr>. Other candidates are a future #<interpreted-function>,
#<perl-function>, etc.
A #<perl-function> would of course know which Perl object it refers
to, and would invoke its appropriate call method, doing any magic that
needs doing.
Finally, I am curious to know whether anyone has proposed making
XEmacs namespace-clean.
What do you mean?