guile-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: ILisp on Emacs-20.7


From: Masao Uebayashi
Subject: Re: ILisp on Emacs-20.7
Date: Wed, 19 Sep 2001 10:24:57 +0900 (JST)

Hello again,

This patch seems to work for me. I forgot to mention the Guile's
version.

      Guile 1.5.2
  GNU Emacs 20.7
      Ilisp 5.11

Regards,
Masao

> Hello,
> 
> I see the following error messages when I input ' ' just after
> '(define', '(map ', or '(whatever'.
> 
>   standard input:5:1: In expression (ilisp-print-info-message (quote define) 
> "nil$
>   standard input:5:1: Unbound variable: ilisp-print-info-message
> 
> Ilisp 5.11 with GNU Emacs 20.7.

--- guile-ilisp.scm.orig        Sun May 13 07:10:53 2001
+++ guile-ilisp.scm     Wed Sep 19 10:28:06 2001
@@ -12,14 +12,15 @@
 ;;; $Id: guile-ilisp.scm,v 1.13 2001/05/12 22:10:53 marcoxa Exp $
 
 
-(define-module (guile-user)
-  :use-module (guile-ilisp))
 
 (define-module (guile-ilisp)
   :use-module (ice-9 debug)
   :use-module (ice-9 session)
   :use-module (ice-9 documentation)
   :use-module (ice-9 regex))
+
+(define-module (guile-user)
+  :use-module (guile-ilisp))
 
 (define (read-from-string str)
   (call-with-input-string str read))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]