From: tyler <tyler.smith@mail.mcgill.ca>
To: help-gnu-emacs@gnu.org
Subject: Re: Nice Emacs Lisp
Date: Wed, 18 Mar 2009 14:45:07 -0300 [thread overview]
Message-ID: <87ljr2913w.fsf@blackbart.sedgenet> (raw)
In-Reply-To: 87mybiamwi.fsf@mundaneum.com
Sébastien Vauban <zthjwsqqafhv@spammotel.com>
writes:
> I'd like to mix Linux and Windows settings in my .emacs file, so that
> I can use GNU Emacs on both platforms with the same init file.
>
> Currently, I've defined:
>
> (defmacro GNULinux (&rest body)
> (list 'if (string-match "linux" (prin1-to-string system-type)) (cons 'progn body)))
>
> (defmacro Windows (&rest body)
> (list 'if (string-match "windows" (prin1-to-string system-type)) (cons 'progn body)))
>
> and I write (for example):
>
> (setq bcc-cache-directory
> (concat
> (Windows "~/.emacs.d/byte-cache-ms-windows")
> (GNULinux "~/.emacs.d/byte-cache-linux")))
>
> But do you know some better way to write the above (the concat function is not
> that clear there...)
I'm not very familiar with macros, but maybe using a single macro
instead of two makes things clearer:
(defmacro gnu-win (gnu win)
`(if (string-match "gnu/linux" (prin1-to-string system-type))
(,@gnu)
(,@win)))
(setq bcc-cache-directory
(gnu-win
"~/.emacs.d/byte-cache-linux"
"~/.emacs.d/byte-cache-ms-windows"))
Cheers,
Tyler
--
Philosophy of science is about as useful to scientists as ornithology is
to birds. --Richard Feynman
next prev parent reply other threads:[~2009-03-18 17:45 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-03-18 15:09 Nice Emacs Lisp Sébastien Vauban
2009-03-18 17:45 ` tyler [this message]
2009-03-18 21:31 ` Mike Mattie
2009-03-18 22:13 ` Peter Dyballa
2009-03-18 22:42 ` Mike Mattie
2009-03-18 23:34 ` Peter Dyballa
2009-03-19 15:33 ` Drew Adams
[not found] ` <mailman.3579.1237478655.31690.help-gnu-emacs@gnu.org>
2009-03-20 9:11 ` rustom
2009-03-20 13:31 ` Mike Mattie
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=87ljr2913w.fsf@blackbart.sedgenet \
--to=tyler.smith@mail.mcgill.ca \
--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).