unofficial mirror of help-gnu-emacs@gnu.org
 help / color / mirror / Atom feed
From: Rusi <rustompmody@gmail.com>
To: help-gnu-emacs@gnu.org
Subject: Re: code listp to determine wich os I'm running on
Date: Wed, 29 Jan 2014 18:43:35 -0800 (PST)	[thread overview]
Message-ID: <5787a521-407a-43ff-aaae-cf7b3caaa2a3@googlegroups.com> (raw)
In-Reply-To: <mailman.13113.1391020728.10748.help-gnu-emacs@gnu.org>

On Thursday, January 30, 2014 12:11:00 AM UTC+5:30, Renato wrote:
> Hi,
> I'm looking for some code to insert in my .emacs to determine wich s.o 
> I'm running.
> 've foud this code:
> _______________________________________
> ;; check OS type (cond((string-equalsystem-type"windows-nt") ; Microsoft 
> Windows (progn(message"Microsoft Windows") ) ) 
> ((string-equalsystem-type"darwin") ; Mac OS X (progn(message"Mac OS X") 
> ) ) ((string-equalsystem-type"gnu/linux") ; linux (progn(message"Linux") 
> ) ) )
> ________________________
> but I do't know lisp (I will learn it, of course...but not now...)
> I've understand that if I'm running Linux if I press F1-e, in the buffer 
> I can read "linux".

> But What do I have to do to set a particular path (setq load-path... to 
> start from if I click
> for my C-x f in emacs on linux or win?

Heres your code written a little more legibly and which you are trying to write
as using if

(cond ((string= system-type "windows-nt") (message "Microsoft Windows"))
      ((string= system-type "darwin")     (message "Darwin"))
      ((string= system-type "gnu/linux")  (message "Gnu/Linux"))
      (t                                  (message "Unknown system")))

[Ive only checked on linux]

Now you can replace those (message "...") calls with what you like

Mind you though setting load-path with a setq is a BAD idea
usually better to make small additions like this

(add-to-list 'load-path "~/.emacs.d/downloads")

Replace the string with whatever you want to add to the load-path


  parent reply	other threads:[~2014-01-30  2:43 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <mailman.13113.1391020728.10748.help-gnu-emacs@gnu.org>
2014-01-29 20:28 ` code listp to determine wich os I'm running on Emanuel Berg
2014-01-29 22:12   ` Renato
2014-01-29 23:26     ` Peter Dyballa
2014-01-30  0:11     ` Stefan Monnier
     [not found]   ` <mailman.13124.1391033590.10748.help-gnu-emacs@gnu.org>
2014-01-29 22:27     ` Emanuel Berg
2014-01-30  2:27     ` Rusi
2014-01-30  2:47     ` Rusi
2014-01-29 21:14 ` Pascal J. Bourguignon
2014-01-29 23:52   ` Emanuel Berg
2014-01-30  2:43 ` Rusi [this message]
2014-01-30  3:47   ` Stefan Monnier
     [not found]   ` <mailman.13151.1391053674.10748.help-gnu-emacs@gnu.org>
2014-01-30  4:01     ` Rusi
2014-01-30 12:59       ` Rusi
     [not found] <mailman.13331.1391158986.10748.help-gnu-emacs@gnu.org>
2014-01-31 11:57 ` Rusi
2014-01-31  9:03 Renato Pontefice
2014-01-31 13:28 ` Stefan Monnier
2014-01-31 23:01   ` Tassilo Horn
     [not found] ` <mailman.13357.1391175021.10748.help-gnu-emacs@gnu.org>
2014-01-31 14:05   ` Rusi
2014-01-31 17:02     ` Renato
     [not found]     ` <mailman.13385.1391187779.10748.help-gnu-emacs@gnu.org>
2014-01-31 17:15       ` Rusi
2014-01-31 17:32       ` Rusi
  -- strict thread matches above, loose matches on Subject: below --
2014-01-31  8:39 Renato Pontefice
2014-01-30  1:55 Louis-Guillaume Gagnon
2014-01-30  1:57 ` Louis-Guillaume Gagnon
2014-01-29 18:41 Renato

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=5787a521-407a-43ff-aaae-cf7b3caaa2a3@googlegroups.com \
    --to=rustompmody@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).