25 lines
837 B
Diff
25 lines
837 B
Diff
|
diff --git a/module/scripts/snarf-check-and-output-texi.scm b/module/scripts/snarf-check-and-output-texi.scm
|
||
|
index 0e7efae..f92c833 100644
|
||
|
--- a/module/scripts/snarf-check-and-output-texi
|
||
|
+++ b/module/scripts/snarf-check-and-output-texi
|
||
|
@@ -262,6 +262,17 @@
|
||
|
(set! *file* file)
|
||
|
(set! *line* line))
|
||
|
|
||
|
+ ;; newer gccs like to throw around more location markers into the
|
||
|
+ ;; preprocessed source; these (hash . hash) bits are what they translate to
|
||
|
+ ;; in snarfy terms.
|
||
|
+ (('location ('string . file) ('int . line) ('hash . 'hash))
|
||
|
+ (set! *file* file)
|
||
|
+ (set! *line* line))
|
||
|
+
|
||
|
+ (('location ('hash . 'hash) ('string . file) ('int . line) ('hash . 'hash))
|
||
|
+ (set! *file* file)
|
||
|
+ (set! *line* line))
|
||
|
+
|
||
|
(('arglist rest ...)
|
||
|
(set! *args* (do-arglist rest)))
|
||
|
|
||
|
--
|
||
|
cgit v0.8.2.1
|