geiser-users
[Top][All Lists]
Advanced

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

Re: [Geiser-users] REPL dying when using autodoc and the Mailutils modul


From: Mark Skilbeck
Subject: Re: [Geiser-users] REPL dying when using autodoc and the Mailutils module
Date: Fri, 25 May 2012 20:57:20 +0100
User-agent: Mutt/1.5.21 (2010-09-15)

What's even *more* peculiar is that if instead of using a LET, we used
DEFINEs the issue would go away. The following does not die:

(define mbox (mu-mailbox-open "~/Mail/mbox" "r"))
(define msg2 (mu-mailbox-get-message mbox 2))
(mu-message-get-header msg2 "From")

While this does:

(let* ((mbox (mu-mailbox-open "~/Mail/mbox" "r"))
       (msg (mu-mailbox-get-message mbox 2)))
  (mu-message-get-header msg "From"))

But! If we have autodoc off, it doesn't.

It's all very strange.

On Fri, May 25, 2012 at 08:46:02PM +0100, Mark Skilbeck wrote:
> So, after running guile --listen, and connecting with Geiser remotely,
> I was able to get a backtrace of the error (attached). I'm going to 
> poke around a little more, see if I can make some sense of it!
> 
> On Fri, May 25, 2012 at 09:03:52PM +0200, Jose A. Ortega Ruiz wrote:
> > On Fri, May 25 2012, Mark Skilbeck wrote:
> > 
> > > Maybe it would be best if I could just disable autodoc for that one
> > > module. Is that possible? I would like to use Mailutils and I would
> > > also like the awesomeness of Geiser's autodoc for other modules.
> > 
> > Yes, geiser-autodoc-mode is a minor mode.  For instance, C-c C-d C-a
> > will toggle it on a per-buffer basis... (i'll check the curious
> > behaviour of mailutils when i find a minute... it's intriguing to say
> > the least!)
> > 
> > jao
> 

-- 
- mgsk.

if all you young men / were fish in the water 
how many young girls / would undress and dive after



reply via email to

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