Hi,
First: thanks for version 6.8.

I have the following:

#lang scribble/manual

@(require
  scribble/core
  scribble/eval
  racket
  scribble/html-properties
  (for-label racket)
  (for-syntax racket))

@interaction[
 (let ()
  (code:comment #,(list "a" "b"))
  (code:comment #,(list "a" "b"))
  'who-cares?)]

@interaction[
 (let ()
  (code:comment #,(list
                   "a"
                   "b"))
  (code:comment #,(list
                   "a"
                   "b"))
  'who-cares?)]

It renders:

6.8 


> (let ()       
   ; ab 
   ; ab 
   'who-cares?) 
'who-cares?     

> (let ()       
   ; ab 
        
        
   ; ab 
        
        
   'who-cares?) 
'who-cares?     

Why the additional linebreaks when the list elements are put on separate lines?
How can I avoid these linebreaks (other than by putting all elements on the 
same line)?
I have made several attempts, but without luck.
If it is a bug, I'll submit a bug-report, but I am not sure it is a bug.

Thanks, Jos











-- 
You received this message because you are subscribed to the Google Groups 
"Racket Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to racket-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to