From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andrew Cagney To: Stephen Smith , gdb@sourceware.cygnus.com Subject: Re: GCC is depreciating multi-line strings Date: Wed, 21 Mar 2001 15:59:00 -0000 Message-id: <3AB7E613.2F9E5DC4@cygnus.com> References: <200103202016.MAA27812@bosch.cygnus.com> <1010320205618.ZM10795@ocotillo.lan> <3AB7C47F.58BEB30B@redhat.com> <3AB7DEDF.29B4CB8E@home.com> <3AB7E20F.E9DCDE23@cygnus.com> X-SW-Source: 2001-03/msg00209.html Andrew Cagney wrote: > > Um, I'm slightly confused. What exactly is ment by multi-line strings? > I've found this link and am still looking :-) > > http://gcc.gnu.org/ml/gcc/2001-03/msg00855.html Ok, there are the following: illegal: "blah blah" k&r "blah\n\ blah" iso-c "blah\n" "blah" GDB should only be using the latter two with new code prefering the last one. I think, for the most part, it is. Code using the first can obviously be fixed :-) Andrew