From 86501edf9e85f5ea84e15e00fb344e659a23841f Mon Sep 17 00:00:00 2001 From: eck Date: Mon, 22 Jan 1990 16:16:03 +0000 Subject: [PATCH] big fix: auto aggregate strings didn't work --- lang/cem/cemcom.ansi/declar.g | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lang/cem/cemcom.ansi/declar.g b/lang/cem/cemcom.ansi/declar.g index 801cdad0d..92c8bae81 100644 --- a/lang/cem/cemcom.ansi/declar.g +++ b/lang/cem/cemcom.ansi/declar.g @@ -226,7 +226,7 @@ initializer(struct idf *idf; int sc;) } '=' { - if (AHEAD != '{') autoagg = 0; + if (AHEAD != '{' && AHEAD != STRING ) autoagg = 0; #ifdef LINT lint_statement(); #endif LINT -- 2.34.1