all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Tim X <timx@nospam.dev.null>
To: help-gnu-emacs@gnu.org
Subject: Re: Detect if Emacs is running in -nw mode
Date: Mon, 31 Mar 2008 18:11:44 +1000	[thread overview]
Message-ID: <87r6dr5n3z.fsf@lion.rapttech.com.au> (raw)
In-Reply-To: fsok7j$2ug$1@registered.motzarella.org

Christian Herenz <herenz@physik.hu-berlin.de> writes:

> Rupert Swarbrick schrieb:
>
>> (unless (function-returning-nil) 1 2 3)
>>
>> evaluates to 3. Not that that matters in this situation.
>>
>> Phew. That was more than I intended to write! Hope it makes things a
>> little clearer.
>>
>> Rupert
>
> Yeah-- You wrote much, and I think you missed the point a little bit..
>
> (unless nil (do-stuff) (do-other-stuff)) ... this would only do-stuff?
>
> (unless nil ((do-stuff) (do-other-stuff)) would do-stuff and do-other-stuff?
>
> That was my actual question.
>
> Greets,
> Christian

When working with any form of lisp, code formatting is the secret. In
fact, its probably more important in lisp languages because unlike other
languages, code and data are pretty much the same thing. 

So, in your current situation ....

(unless condition
  body)

means unless the condition is true, execute body.

Now body can consist of more than one form, i.e.

(unless condition
  (do-thing-1 arg1)
  (do-thing-2)
  (do-thing-3 arg1 arg2))

would execute 'do-thing-1' with one argument arg1
              'do-thing-2' with no arguments
              'do-thing-3' with two arguments arg1 and arg2

All of the body forms will be executed if any of them are executed and
you can have as many as you like. 

If you want to execute some forms if the condition is true and execute
other forms if it is not, then you want either 'if' or 'cond'. 

Note that 'if' only allows for one form in the first part e.g. 

(if window-system
    (do-true-thing)
  (do-false-thing))

You can use progn to add morre forms to the first part, but that is
generally considered poor lisp style e.g.

(if window-system
    (progn
      (do-thing-1)
      (do-thing-2))
  (do-other-else-thing

Note that the else part can either be absent or contain multiple forms
to be evaluated.

In the case where you want to execute multiple forms for the 'true'
part, you often see a cond used (cond = conditional). cond is
particularly useful wehn you have more than a true/false
situation. Often, the last condition in a cond is 't', which evaluates
to true - think of it as the 'catch-all'. If none of the other tests
match, this one will. The cond can be useful if you run on multiple
platforms e.g.

(cond
 ((eq window-system 'x)
  (do-something-for-x-1)
  (do-something-for-x-2))
 ((eq eindow-system 'windows)
   (do-soemthing-for-windows-1)
   (do-something-for-windows-2))
 (t
   (do-this-if-not-x-or-windows-1)
   (do-this-if-not-x-or-windows-2)))

I highly recommend you read the Introduction to Emacs Lisp as this will
make it clear.

Tim



-- 
tcross (at) rapttech dot com dot au


  parent reply	other threads:[~2008-03-31  8:11 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-03-29 22:37 Detect if Emacs is running in -nw mode Christian Herenz
2008-03-29 22:43 ` Tom Rauchenwald
     [not found] ` <mailman.9603.1206831074.18990.help-gnu-emacs@gnu.org>
2008-03-29 23:52   ` Christian Herenz
2008-03-30  0:35     ` Roland Winkler
2008-03-31  2:18       ` Barry Margolin
2008-03-30  0:44     ` Lennart Borgman (gmail)
2008-03-30  1:13       ` Drew Adams
     [not found]     ` <mailman.9613.1206837866.18990.help-gnu-emacs@gnu.org>
2008-03-30  1:10       ` Will Parsons
2008-03-30  1:22         ` Christian Herenz
2008-03-30  3:34           ` BVK
2008-03-30 11:23           ` Rupert Swarbrick
2008-03-30 12:17             ` Christian Herenz
2008-03-30 12:43               ` Lennart Borgman (gmail)
     [not found]               ` <mailman.9635.1206881018.18990.help-gnu-emacs@gnu.org>
2008-03-30 14:24                 ` Christian Herenz
2008-03-30 14:45                   ` Lennart Borgman (gmail)
2008-03-30 15:13                   ` Peter Dyballa
     [not found]                   ` <mailman.9643.1206890035.18990.help-gnu-emacs@gnu.org>
2008-03-30 15:31                     ` Christian Herenz
     [not found]                   ` <mailman.9641.1206888365.18990.help-gnu-emacs@gnu.org>
2008-03-30 16:10                     ` Rupert Swarbrick
2008-03-30 17:56                       ` Christian Herenz
2008-03-31  7:32                         ` Nuno J. Silva
2008-03-31  8:11                         ` Tim X [this message]
2008-03-31  8:34                           ` Christian Herenz
2008-03-31  2:22                   ` Barry Margolin
2008-03-31  8:38                     ` Christian Herenz

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

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87r6dr5n3z.fsf@lion.rapttech.com.au \
    --to=timx@nospam.dev.null \
    --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.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.