Fix doc snarfing with GCC 4.5+. From . diff --git a/scripts/snarf-check-and-output-texi b/scripts/snarf-check-and-output-texi index ea33e17..8cd42e8 100755 --- a/scripts/snarf-check-and-output-texi +++ b/scripts/snarf-check-and-output-texi @@ -267,6 +267,17 @@ exec ${GUILE-guile} -l $0 -c "(apply $main (cdr (command-line)))" "$@" (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))) le>
aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/fontutils.scm
AgeCommit message (Expand)Author
2019-03-21Merge branch 'master' into stagingMarius Bakke
2019-03-21gnu: teckit: Update to 2.5.9....Marius Bakke
2019-03-21gnu: teckit: Adjust indentation....Marius Bakke
2019-03-21gnu: teckit: Use release tarball....Marius Bakke
2019-03-18Correct name and email address for ng0....ng0
2019-03-17gnu: fontforge: Update to 20190317....Marius Bakke
2019-03-10gnu: libuninameslist: Update to 20190305....Marius Bakke
2019-01-15gnu: Separate Python core packages from the rest....Ricardo Wurmus
2018-10-17Merge branch 'master' into core-updatesMarius Bakke
2018-10-09gnu: Add ttf2pt1....Ludovic Courtès
2018-09-09gnu: fontconfig: Update to 2.13.1....Marius Bakke
2018-08-25Merge branch 'staging' into core-updatesMarius Bakke
2018-08-21gnu: graphite2: Update to 1.3.12....Marius Bakke
2018-08-16gnu: ttf2eot: Update to 0.0.3....Tobias Geerinckx-Rice
2018-08-16gnu: ttf2eot: Return #t from all phases....Tobias Geerinckx-Rice
2018-08-10gnu: fontforge: Build with Python 2....Ricardo Wurmus