From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 2218 invoked by alias); 12 Feb 2002 22:38:38 -0000 Mailing-List: contact guile-emacs-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: guile-emacs-owner@sources.redhat.com Received: (qmail 2083 invoked from network); 12 Feb 2002 22:38:36 -0000 Received: from unknown (HELO s1.uklinux.net) (80.84.72.21) by sources.redhat.com with SMTP; 12 Feb 2002 22:38:36 -0000 Received: from portalet.ossau.uklinux.net (IDENT:root@ppp-3b-210.3com.telinco.net [212.159.133.210]) by s1.uklinux.net (8.11.6/8.11.6) with ESMTP id g1CMcJL18746; Tue, 12 Feb 2002 22:38:19 GMT Envelope-To: guile-emacs@sources.redhat.com Received: from laruns.ossau.uklinux.net.ossau.uklinux.net (neil@laruns.ossau.uklinux.net [192.168.1.3]) by portalet.ossau.uklinux.net (8.9.3/8.8.7) with ESMTP id WAA09637; Tue, 12 Feb 2002 22:13:42 GMT To: ttn@glug.org Cc: guile-devel@gnu.org, guile-emacs@sources.redhat.com Subject: Re: Elisp translator work finished (for now) References: From: Neil Jerram Date: Tue, 12 Feb 2002 14:38:00 -0000 In-Reply-To: Message-ID: User-Agent: Gnus/5.0808 (Gnus v5.8.8) Emacs/20.7 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-SW-Source: 2002-q1/txt/msg00015.txt.bz2 >>>>> "thi" == Thien-Thi Nguyen writes: thi> this is really cool stuff! thi> i modified lang/elisp/base.scm `load-emacs' like so: thi> (defun load-emacs (&optional new-load-path) thi> (message "load-path: %s" load-path) thi> (cond (new-load-path thi> (message "Setting load-path to: %s" new-load-path) thi> (setq load-path new-load-path))) thi> (message "load-path: %s" load-path) thi> (scheme (read-set! keywords 'prefix)) thi> (message "Calling loadup.el to clothe the bare Emacs...") thi> (load "loadup.el") thi> (message "Guile Emacs now fully clothed")) thi> and then tried to write examples/lang-elisp/load-emacs (below) w/o thi> success; the 20.7 loadup.el is still being searched instead of what i thi> specified. didn't get a chance to look further, but here's a short log thi> of the output: thi> cd /home/ttn/tmp/.tmp/examples/lang-elisp/ thi> ./load-emacs thi> load-path: ("/usr/share/emacs/20.7/lisp/" "/usr/share/emacs/20.7/lisp/emacs-lisp/") thi> Setting load-path to: ("/home/ttn/build/.gnu/emacs/lisp" "/home/ttn/build/.gnu/emacs/lisp/emacs-lisp") thi> load-path: ("/home/ttn/build/.gnu/emacs/lisp" "/home/ttn/build/.gnu/emacs/lisp/emacs-lisp") thi> (# (# (read-set! keywords (quote prefix))) #) thi> Calling loadup.el to clothe the bare Emacs... thi> Loading /usr/share/emacs/20.7/lisp/loadup.el... thi> Using load-path ("/home/ttn/build/.gnu/emacs/lisp" "/home/ttn/build/.gnu/emacs/lisp/emacs-lisp") thi> ERROR: Signalling file-error with data ("Cannot open load file" "byte-run") Strange. I'll have a look... Thanks for your interest and the report! Neil