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))) tr>
aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/image-viewers.scm
AgeCommit message (Expand)Author
2021-03-08gnu: Add xzgv....* gnu/packages/image-viewers.scm (xzgv): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr> Stefan Reichör
2021-03-02gnu: feh: Update to 3.6.3....* gnu/packages/image-viewers.scm (feh): Update to 3.6.3. Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr> Xinglu Chen
2021-01-24gnu: catimg: Update to 2.7.0....* gnu/packages/image-viewers.scm (catimg): Update to 2.7.0. Efraim Flashner
2021-01-09gnu: feh: Update to 3.6.2....* gnu/packages/image-viewers.scm (feh): Update to 3.6.2. Tobias Geerinckx-Rice
2021-01-05gnu: nomacs: Satisfy guix lint....* gnu/packages/image-viewers.scm (nomacs)[source]: Add file-name field. [inputs]: Move qttools ... [native-inputs]: ... to here. Efraim Flashner
2021-01-04gnu: Add nomacs photo lounge....* gnu/packages/image-viewers.scm (nomacs): New variable. Signed-off-by: Leo Prikler <leo.prikler@student.tugraz.at> Rovanion Luckey
2020-12-07gnu: feh: Update to 3.6.1....* gnu/packages/image-viewers.scm (feh): Update to 3.6.1. Tobias Geerinckx-Rice
2020-12-01gnu: feh: Update to 3.6....* gnu/packages/image-viewers.scm (feh): Update to 3.6. Tobias Geerinckx-Rice
2020-11-03gnu: qview: Fix regexp....* gnu/packages/image-viewers.scm (qview): Fix regexps. Nicolas Goaziou
2020-11-02gnu: qview: Update to 4.0....* gnu/packages/image-viewers.scm (qview): Update to 4.0. [arguments]: Append PREFIX to qmake call. Fix auto-update removal. Nicolas Goaziou