1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-10 22:10:21 +02:00

(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?".
This commit is contained in:
Marius Vollmer 2004-11-09 13:54:22 +00:00
parent d233b123d0
commit a04906d98d

View file

@ -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))