<div dir="ltr"><div>You&#39;re proving that (let () ...) is necessary, which I have explicitly agreed with since the original email, but you have not yet demonstrated that split-for-body is necessary.  Here is the fix I have described twice already, now explicitly put into the define-syntax-rule solution:<br>

</div><div><br>(define-syntax-rule (for/print/fixed clauses pre .. result)<br></div><div>  (for clauses<br></div><div>    pre ...<br></div><div>    (printf &quot;~v\n&quot; (let () result))))<br></div></div><div class="gmail_extra">

<br clear="all"><div>Carl Eastlund</div>
<br><br><div class="gmail_quote">On Fri, Sep 6, 2013 at 12:25 PM, Matthew Flatt <span dir="ltr">&lt;<a href="mailto:mflatt@cs.utah.edu" target="_blank">mflatt@cs.utah.edu</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">

<br>
#lang racket/base<br>
(require (for-syntax racket/base<br>
                     syntax/parse<br>
                     syntax/for-body))<br>
<br>
(define-syntax (for/print/good stx)<br>
<div class="im">  (syntax-parse stx<br>
    [(_ clauses . body)<br>
</div>     (with-syntax ([([pre ...] [post ...]) (split-for-body stx #&#39;body)])<br>
<div class="im">       (syntax<br>
        (for clauses<br>
          pre ...<br>
</div>          (printf &quot;~v\n&quot; (let () post ...)))))]))<br>
<br>
(define-syntax-rule (for/print/bad clauses pre ... result)<br>
<div class="im">  (for clauses<br>
    pre ...<br>
    (printf &quot;~v\n&quot; result)))<br>
<br>
</div>;; Try changing to for/print/bad:<br>
(for/print/good ([i 1])<br>
<div class="im">  (define (fish? v) (or (red? v) (blue? v)))<br>
  (begin<br>
</div>    (define (red? v) (eq? v &#39;red))<br>
    (define (blue? v) (eq? v &#39;blue))<br>
    (fish? i)))<br>
<div class="HOEnZb"><div class="h5"><br>
<br>
At Fri, 6 Sep 2013 12:17:56 -0400, Carl Eastlund wrote:<br>
&gt; Right, that&#39;s the issue with needing the (let () result) in my<br>
&gt; define-syntax-rule version.  I still didn&#39;t need split-for-body, which<br>
&gt; doesn&#39;t guarantee there are no definitions in the post ... part.  All it<br>
&gt; guarantees to eliminate are #:final and #:break.<br>
&gt;<br>
&gt; Carl Eastlund<br>
&gt;<br>
&gt;<br>
&gt; On Fri, Sep 6, 2013 at 12:09 PM, Matthew Flatt &lt;<a href="mailto:mflatt@cs.utah.edu">mflatt@cs.utah.edu</a>&gt; wrote:<br>
&gt;<br>
&gt; &gt; The issue is `begin` splicing. The `result` form could be a `begin`<br>
&gt; &gt; form that contains definitions that are referenced by a preceding<br>
&gt; &gt; forms.<br>
&gt; &gt;<br>
&gt; &gt; For example, given<br>
&gt; &gt;<br>
&gt; &gt;  (define (fish? v) (or (red? v) (blue? v)))<br>
&gt; &gt;  (begin<br>
&gt; &gt;   (define (red? v) ....)<br>
&gt; &gt;   (define (blue? v) ....)<br>
&gt; &gt;   5)<br>
&gt; &gt;<br>
&gt; &gt; With `begin` splicing, that turns into<br>
&gt; &gt;<br>
&gt; &gt;  (define (fish? v) (or (red? v) (blue? v)))<br>
&gt; &gt;  (define (red? v) ....)<br>
&gt; &gt;  (define (blue? v) ....)<br>
&gt; &gt;  5<br>
&gt; &gt;<br>
&gt; &gt; which is different than<br>
&gt; &gt;<br>
&gt; &gt;  (define (fish? v) (or (red? v) (blue? v)))<br>
&gt; &gt;  (let ()<br>
&gt; &gt;    (define (red? v) ....)<br>
&gt; &gt;    (define (blue? v) ....)<br>
&gt; &gt;    5)<br>
&gt; &gt;<br>
&gt; &gt; At Fri, 6 Sep 2013 11:15:50 -0400, Carl Eastlund wrote:<br>
&gt; &gt; &gt; Is this function ever particularly necessary?  Its intended use seems to<br>
&gt; &gt; be<br>
&gt; &gt; &gt; like so:<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; (define-syntax (for/print stx)<br>
&gt; &gt; &gt;   (syntax-parse stx<br>
&gt; &gt; &gt;     [(_ clauses . body)<br>
&gt; &gt; &gt;      (with-syntax ([([pre ...] [post ...]) (split-for-body #&#39;body)])<br>
&gt; &gt; &gt;        (syntax<br>
&gt; &gt; &gt;          (for clauses<br>
&gt; &gt; &gt;            pre ...<br>
&gt; &gt; &gt;            (printf &quot;~v/n&quot; (let () post ...)))))]))<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; That way any #:break or #:final from the body ends up in pre ..., where<br>
&gt; &gt; the<br>
&gt; &gt; &gt; enclosing for loop will interpret them, and post ... will only include<br>
&gt; &gt; &gt; normal definitions and expressions.<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; But it seems to me there&#39;s a much easier way that should always work:<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; (define-syntax-rule (for/print clauses pre ... result)<br>
&gt; &gt; &gt;   (for clauses<br>
&gt; &gt; &gt;     pre ...<br>
&gt; &gt; &gt;     (printf &quot;~v\n&quot; result)))<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; This not only puts all #:break and #:final clauses in pre ..., it should<br>
&gt; &gt; &gt; guarantee result is an expression.  Perhaps one should still write (let<br>
&gt; &gt; ()<br>
&gt; &gt; &gt; result) in case result is (begin defn expr), but that&#39;s still simpler<br>
&gt; &gt; than<br>
&gt; &gt; &gt; using split-for-body.<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; My question is -- have I overlooked some clever subtlety here that makes<br>
&gt; &gt; &gt; split-for-body necessary, or is it usually easier to just decompose pre<br>
&gt; &gt; ...<br>
&gt; &gt; &gt; result rather than bothering with split-for-body?<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; Carl Eastlund<br>
&gt; &gt; &gt; _________________________<br>
&gt; &gt; &gt;   Racket Developers list:<br>
&gt; &gt; &gt;   <a href="http://lists.racket-lang.org/dev" target="_blank">http://lists.racket-lang.org/dev</a><br>
&gt; &gt;<br>
&gt; &gt;<br>
<br>
</div></div></blockquote></div><br></div>