home *** CD-ROM | disk | FTP | other *** search
- The 'msg' macro now accepts the special form (T 'x_column), and it
- spaces over to that column (plus 1).
-
- -> (msg "foo" (T 10) "bar" N "baz" (T 11) "bof" N)
- foo bar
- baz bof
- nil
- ->
-
- Note that the method used to locate the column only works if nothing
- has yet been actually written on the line. Problems will occur if you drain
- the port in the middle of the line.
-
- For example:
- -> (msg "foo" D (T 10) "bar" N << here we drain after "foo"
- "foo" (T 10) "bar" N)
- foo bar << thus column 11 turns out to be column 14
- foo bar
- nil
- ->
-
-
-