1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-10 22:10:21 +02:00

fix bug serializing filenames in source locations

* module/language/glil/compile-assembly.scm (limn-sources): Fix bug
  whereby filename was serialized as a ("foo") instead of "foo".
This commit is contained in:
Andy Wingo 2009-03-14 16:03:34 +01:00 committed by Andy Wingo
parent eb7ea0450a
commit ff33605d6a

View file

@ -57,7 +57,7 @@
((not (equal? new-filename filename))
(lp (cdr in)
`((,addr . (,line . ,column))
(filename ,new-filename)
(filename . ,new-filename)
. ,out)
new-filename))
((or (null? out) (not (equal? (cdar out) `(,line . ,column))))