[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

type [3] informational - SN 2227



    Date: Tue, 3 Apr 90 18:20:57 EDT
    From: buff%pravda@gatech.edu (Richard Billington)

    When using Formatting Table, I'd like a cell in a row to have
    one or more lines (a cell might have one line of info, or more,
    while another cell in the same row may have a different number
    of lines).

I've done this and haven't had any trouble.

(defun test-ft ()
  (fresh-line)
  (formatting-table ()
    (dotimes (i 4)
      (ignore i)
      (formatting-row ()
	(formatting-cell ()
	  (format t "baz"))
	(formatting-cell ()
	  (format t "foo~%bar"))
	(formatting-cell ()
	  (format t "quux"))))))

Command: (test-ft)
baz foo quux
    bar
baz foo quux
    bar
baz foo quux
    bar
baz foo quux
    bar

                                                barmar