From: weber <hugows@gmail.com>
To: help-gnu-emacs@gnu.org
Subject: Re: Code depending on hostname
Date: Wed, 08 Aug 2007 11:04:12 -0700 [thread overview]
Message-ID: <1186596252.382052.89970@k79g2000hse.googlegroups.com> (raw)
In-Reply-To: <s3ayuj5ki.fsf@googlemail.com>
On 8 ago, 14:31, Hadron <hadronqu...@googlemail.com> wrote:
> Could someone possibly advise me on some example lisp of how to do alternate
> things based on the hostname of the machine that the code is being run on?
>
> e.g.
>
> if hostname is A
> call funcA
> else if hostname is B
> call funcB
> else ....
>
> many thanks for any pointers.
If i understood you, you want something like this?
system-name is a variable defined in `C source code'.
Its value is "HSMOB"
Documentation:
The host name of the machine Emacs is running on.
So we can do something like this in our .emacs:
(if (string-equal system-name "HSMOB")
(hs-config-laptop)
(hs-config-work))
and then define functions for each configuration, like:
(defun hs-config-laptop ()
"Configuration for my laptop"
(h-color-theme-ocean-deep)
(setq ispell-program-name "aspell"))
Did this help you ?
Cheers,
weber
next prev parent reply other threads:[~2007-08-08 18:04 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-08-08 17:31 Code depending on hostname Hadron
2007-08-08 18:04 ` weber [this message]
2007-08-08 20:42 ` Scott Frazer
2007-08-08 21:04 ` Hadron
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.gnu.org/software/emacs/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1186596252.382052.89970@k79g2000hse.googlegroups.com \
--to=hugows@gmail.com \
--cc=help-gnu-emacs@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).