[Openmcl-devel] format string compression

Derrell Piper ddp at electric-loft.org
Thu Feb 26 16:54:52 PST 2009


Hi,

Using 1.3-RC1-r11719M  (DarwinX8664) with this:

   (dolist (sentence (sort (copy-list sentences) #'(lambda (x y)  
(string< (car x) (car y)))))
     (format t "car: ~a~%" (car sentence))
     (format t "cdr: ~a~%" (cdr sentence))
     (format t "seen: ~d~%" (seen (cdr sentence)))
     (format t "last-seen: ~a~%" (last-seen (cdr sentence)))
     (format t "~a: ~d ~a~%" (car sentence) (seen (cdr sentence))  
(last-seen (cdr sentence))))

...here's the output I get:

Invoking restart: Summarize sentence codes seen on NMEA and continue.
car: $GPGLL
cdr: #<STATS #x3000412D98AD>
seen: 15
last-seen: ($GPGLL 3501.474 N 07641.731 W 230455.46 A D*78)
#1=$GPGLL: 15 (#1# 3501.474 N 07641.731 W 230455.46 A D*78)
car: $IIDBT
cdr: #<STATS #x3000412D944D>
seen: 19
last-seen: ($IIDBT 006.2 f 001.9 M 001.0 F*1C)
#1=$IIDBT: 19 (#1# 006.2 f 001.9 M 001.0 F*1C)

...and so on.  Seems someone has seen fit to compress the output  
('#1=', followed by '#1#') for me.

What's going on here?  Can I disable this?

Thanks,

Derrell



More information about the Openmcl-devel mailing list