[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Byte compiler inefficiency
From: |
Richard M. Stallman |
Subject: |
Re: Byte compiler inefficiency |
Date: |
Mon, 08 Aug 2005 08:09:51 -0400 |
The binding for x is completely unnecessary and wasteful.
It is necessary in order for compiled code to do the same thing
as the interpreted code. When cadr is called interpretively,
the binding of x is like any other binding.
Now, we could consider adopting the convention that it is ok for the
compiled code not to work just like the interpreted code in this
particular kind of case.