unofficial mirror of guile-user@gnu.org 
 help / color / mirror / Atom feed
From: Andy Wingo <wingo@pobox.com>
To: Josef Wolf <jw@raven.inka.de>
Cc: guile-user@gnu.org
Subject: Re: Need help with a macro
Date: Sun, 15 Nov 2009 19:18:33 +0100	[thread overview]
Message-ID: <m3fx8fodmu.fsf@pobox.com> (raw)
In-Reply-To: <20091115163303.GD29831@raven.wolf.lan> (Josef Wolf's message of "Sun, 15 Nov 2009 17:33:03 +0100")

Hello,

On Sun 15 Nov 2009 17:33, Josef Wolf <jw@raven.inka.de> writes:

> Hello,
>
> I am trying to work through the little schemer book. In order to make it
> easier to go through the examples, I've come up with the following macro:
>
>   ;;; Helper to visualize
>
>   (define-macro (disp exp)
>     (display exp)   (newline)
>     `(display ,exp)
>   ;  (newline)  (newline)
>   )

Does the little schemer book actually use defmacro?

Anyway the issue is that defmacro needs to return Scheme code as an
s-expression. The last expression in a function is its return value.
That would be the `(display ,exp) bit there. But if you uncomment the
newlines, well, you return whatever newline returns, which is actually
unspecified.

Good luck,

Andy
-- 
http://wingolog.org/




  reply	other threads:[~2009-11-15 18:18 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-11-15 16:33 Need help with a macro Josef Wolf
2009-11-15 18:18 ` Andy Wingo [this message]
2009-11-16 17:40   ` Josef Wolf
2009-11-15 20:26 ` Neil Jerram
2009-11-16 17:20   ` Josef Wolf

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/guile/

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

  git send-email \
    --in-reply-to=m3fx8fodmu.fsf@pobox.com \
    --to=wingo@pobox.com \
    --cc=guile-user@gnu.org \
    --cc=jw@raven.inka.de \
    /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).