From: Richard James Panturis Giuly
Subject: allegro common lisp/emacs question
Date: 
Message-ID: <38D57DFB.CD6746F0@surfsouth.com>
What is the easiest way to tell emacs/allegro-common-lisp that
you want to load the file in the current buffer?

From: dave
Subject: Re: allegro common lisp/emacs question
Date: 
Message-ID: <38d5a215$0$2939@senator-bedfellow.mit.edu>
isn't there a pulldown menu for that buffer's mode that does this?

dave

Richard James Panturis Giuly <······@surfsouth.com> wrote in message
······················@surfsouth.com...
> What is the easiest way to tell emacs/allegro-common-lisp that
> you want to load the file in the current buffer?
>
From: Jonathan
Subject: Re: allegro common lisp/emacs question
Date: 
Message-ID: <NoXVOBBTJ3jABaemeODpJLKMJtdP@4ax.com>
On Mon, 20 Mar 2000 01:25:40 GMT, Richard James Panturis Giuly
<······@surfsouth.com> wrote:

>What is the easiest way to tell emacs/allegro-common-lisp that
>you want to load the file in the current buffer?

From apropos:

fi:lisp-eval-or-compile-current-buffer 
C-c C-b
  Command: Send the entire buffer to the Lisp subprocess associated
with this buffer.

You can see that this is bound to Ctrl-c Ctrl-b by default. There is
also:

emacs-lisp-byte-compile	      
M-x emacs-lisp-byte-compile RET
  Command: Byte compile the file containing the current buffer.

and

emacs-lisp-byte-compile-and-load 
M-x emacs-lisp-byte-compile-and-load RET
  Command: Byte-compile the current file (if it has changed), then
load compiled code.

which are not bound by default.

Hope this helps.

-Jonathan
········@ptcstudios.com