[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Modifying Frame Title
From: |
Mark Elston |
Subject: |
Re: Modifying Frame Title |
Date: |
Wed, 28 May 2008 17:47:31 -0700 |
User-agent: |
Gnus/5.11 (Gnus v5.11) Emacs/22.1.50 (windows-nt) |
Rupert Swarbrick <rswarbrick@gmail.com> writes:
> Mark Elston <m.elston@advantest-ard.com> writes:
>
>> I would like to modify the frame title when I run GNUS (or,
>> possibly other times as well).
>>
>> I tried the following in the *scratch* buffer:
>>
>> (modify-frame-parameters nil ((frame-title-format . "GNUS")))
>>
>> This resulted in an error, though. Is there a way to get the
>> frame to have a different title?
>>
>> Mark
>
> ...
>
> What you want appears to be
>
> (modify-frame-parameters nil '((name . "GNUS")))
>
> Note that I've never done this before, and worked this out from
> reading the help strings, but the frame name hasn't changed when I've
> switched buffers here, so I presume I've got it right!
>
Great, Rupert. Works like a charm.
Now I just need to add it to a hook function and I'm all set...
Mark