From a04906d98de1f67656fff7b932594c1855f3fda7 Mon Sep 17 00:00:00 2001 From: Marius Vollmer Date: Tue, 9 Nov 2004 13:54:22 +0000 Subject: [PATCH] (process-multiline-directive): Allow the fname attribute to a sequence of strings and append them all to form the fname. This is needed for string literals like "u8""vector?". --- scripts/snarf-check-and-output-texi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/snarf-check-and-output-texi b/scripts/snarf-check-and-output-texi index a74eee08c..ad5c7a2cc 100755 --- a/scripts/snarf-check-and-output-texi +++ b/scripts/snarf-check-and-output-texi @@ -254,8 +254,8 @@ exec ${GUILE-guile} -l $0 -c "(apply $main (cdr (command-line)))" "$@" (('cname ('id . name)) (set! *c-function-name* (texi-quote (symbol->string name)))) - (('fname ('string . name)) - (set! *function-name* (texi-quote name))) + (('fname ('string . name) ...) + (set! *function-name* (texi-quote (apply string-append name)))) (('type ('id . type)) (set! *snarf-type* type))