How do I programmatically determine which OS Emacs is running under in ELisp?
I would like to run different code in .emacs depending on the OS.
.emacs
For folks newer to elisp, a sample usage:
(if (eq system-type 'darwin) ; something for OS X if true ; optional something if not )