This is the mail archive of the guile-emacs@sources.redhat.com mailing list for the Guile project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: emacs-guile


From: Keisuke Nishida <knishida@sky.sannet.ne.jp>

> At Thu, 17 Jan 2002 17:25:47 -0500 (EST),
> Chris Beggy wrote:
> > 
> > While trying emacs-guile-0.2 and emacs21.1, guile-1.4, I
> > couldn't even get very simple expressions to evaluate in the
> > scheme-interaction-mode:
> > 
> > (guile-lisp-eval '(+ 1 2))
> > 
> > gives:
> > 
> > cond: Guile error: unbound-variable, "Unbound variable:
> > guile-lisp-eval"
> 
> In scheme-interaction-mode, what you type is evaluated by Guile.
> That is, (guile-lisp-eval '(+ 1 2)) is evaluated by Guile, and
> Guile throws an error because guile-lisp-eval is not defined in
> Guile.
> 
> So, try simply
> 
>  (+ 1 2)
> 
> Hopes this helps.

Yes, thanks!  That works.  I am so confused...

I thought these libraries would help me:

   1. use elisp libraries in scheme
   2. let me use scheme libraries to do functions in emacs, like
   manipulating buffers and so on.

am I completely wrong?

Chris


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]