Send Beginners mailing list submissions to
        [email protected]

To subscribe or unsubscribe via the World Wide Web, visit
        http://www.haskell.org/mailman/listinfo/beginners
or, via email, send a message with subject or body 'help' to
        [email protected]

You can reach the person managing the list at
        [email protected]

When replying, please edit your Subject line so it is more specific
than "Re: Contents of Beginners digest..."


Today's Topics:

   1. Re:  Problem installing lambdabot (Brandon Allbery)
   2.  Editing the layout hook (Anthony Campbell)
   3. Re:  Editing the layout hook (Brandon Allbery)


----------------------------------------------------------------------

Message: 1
Date: Tue, 13 Sep 2011 11:21:08 -0400
From: Brandon Allbery <[email protected]>
Subject: Re: [Haskell-beginners] Problem installing lambdabot
To: Amy de Buitl?ir <[email protected]>
Cc: [email protected]
Message-ID:
        <CAKFCL4UQivdR1enZm11MjHyKFqq3O=_ic3zoj_vpovm9bri...@mail.gmail.com>
Content-Type: text/plain; charset="utf-8"

On Tue, Sep 13, 2011 at 10:06, Amy de Buitl?ir <[email protected]> wrote:

> When I do "cabal install lambdabot", I get some weird errors. I'm running
> Debian, mostly Wheezy (testing) but a couple of Sid packages in there. I
> installed the Haskell Platform manually. So I might have some incompatible
> stuff ;^)
>

I think it's trying to tell you that -fvia-C's x86-64 code generator is
broken.  About all I can suggest is using a 32-bit ghc and libraries, or see
if -fasm will work for the Plugins module (but IIRC it uses -fvia-C for good
reason, so I suspect this will fail).

-- 
brandon s allbery                                      [email protected]
wandering unix systems administrator (available)     (412) 475-9364 vm/sms
-------------- next part --------------
An HTML attachment was scrubbed...
URL: 
<http://www.haskell.org/pipermail/beginners/attachments/20110913/eef6f7a3/attachment-0001.htm>

------------------------------

Message: 2
Date: Wed, 14 Sep 2011 09:30:39 +0100
From: Anthony Campbell <[email protected]>
Subject: [Haskell-beginners] Editing the layout hook
To: [email protected]
Message-ID: <[email protected]>
Content-Type: text/plain; charset=us-ascii

I've just started using Xmonad so apologies if this is a very basic
question. 

I tried to use a different layout but I keep getting errors. Even when I
simply copied the example from Monad-Doc-Extending.html it didn't work.

My xmonad.hs file was as follows:

--------------------------------------
    import XMonad

    import XMonad.Layout.Tabbed
    import XMonad.Layout.Accordion
    import XMonad.Layout.NoBorders

    mylayoutHook = Full ||| noBorders (tabbed shrinkText defaultTConf) ||| 
Accordion

    main = xmonad $ defaultConfig { layoutHook = mylayoutHook }
-----------------------------------------------

The error message is:

xmonad.hs:7:58: Not in scope: `defaultTConf'



Can anyone kindly tell me what is wrong here?

Anthony


-- 
Anthony Campbell - [email protected] 
Microsoft-free zone - Using Debian GNU/Linux 
http://www.acampbell.org.uk - sample my ebooks at
http://www.smashwords.com/profile/view/acampbell




------------------------------

Message: 3
Date: Wed, 14 Sep 2011 05:55:52 -0400
From: Brandon Allbery <[email protected]>
Subject: Re: [Haskell-beginners] Editing the layout hook
To: Anthony Campbell <[email protected]>
Cc: [email protected]
Message-ID:
        <CAKFCL4VPsR52HvWTvnwiuDU3A9W6n=ztn+vdkb2kkgnkdks...@mail.gmail.com>
Content-Type: text/plain; charset="utf-8"

On Wed, Sep 14, 2011 at 04:30, Anthony Campbell <[email protected]> wrote:

>    mylayoutHook = Full ||| noBorders (tabbed shrinkText defaultTConf) |||
> Accordion
> xmonad.hs:7:58: Not in scope: `defaultTConf'
>

There isn't a defaultTConf defined by XMonad.Layout.Tabbed.  You probably
want defaultTheme.

-- 
brandon s allbery                                      [email protected]
wandering unix systems administrator (available)     (412) 475-9364 vm/sms
-------------- next part --------------
An HTML attachment was scrubbed...
URL: 
<http://www.haskell.org/pipermail/beginners/attachments/20110914/5d7e2682/attachment-0001.htm>

------------------------------

_______________________________________________
Beginners mailing list
[email protected]
http://www.haskell.org/mailman/listinfo/beginners


End of Beginners Digest, Vol 39, Issue 18
*****************************************

Reply via email to