bug-guile
[Top][All Lists]
Advanced

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

Bug in guile.el


From: Thomas Bushnell, BSG
Subject: Bug in guile.el
Date: 21 Jun 2001 00:50:41 -0700
User-agent: Gnus/5.0803 (Gnus v5.8.3) Emacs/20.7

The following code from guile-core/emacs/guile.el fails in the event
that "channel.scm" is not found anywhere:

(defvar gulie-channel-file
  (catch 'return
    (mapc (lambda (dir)
            (let ((file (expand-file-name "channel.scm" dir)))
              (if (file-exists-p file) (throw 'return file))))
          load-path)))

In that event, the variable is set to the value of load-path; clearly
wrong, and indeed, an error then gets signalled from
guile:make-adapter when it tries to use guile-libs.

Thomas



reply via email to

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