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:
parent
eb7ea0450a
commit
ff33605d6a
1 changed files with 1 additions and 1 deletions
|
@ -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))))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue