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


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.

Best regards,
Keisuke Nishida


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