help-gnu-emacs
[Top][All Lists]
Advanced

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

Re: how do i find out the platform emacs runs on?


From: Edi Weitz
Subject: Re: how do i find out the platform emacs runs on?
Date: Wed, 26 Nov 2003 18:35:54 +0100
User-agent: Gnus/5.1002 (Gnus v5.10.2) Emacs/21.3 (gnu/linux)

On Wed, 26 Nov 2003 10:21:45 -0700, Kevin Rodgers <ihs_4664@yahoo.com> wrote:

> (cond ((eq system-type 'windows-nt)
>         ...)
>        ((eq system-type 'linux)
>         ...)
>        ((eq system-type 'darwin)
>         ...))

or

  (case system-type
    ((windows-nt)
      ...)
    ((linux)
      ...)
    ((darwin)
      ...))

after

  (require 'cl)

Edi.


reply via email to

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