C1X Unicode strings without raw strings

Joseph S. Myers joseph@codesourcery.com
Thu Aug 18 16:47:00 GMT 2011


On Thu, 18 Aug 2011, Michael Matz wrote:

> Hi,
> 
> On Thu, 18 Aug 2011, Joseph S. Myers wrote:
> 
> > @@ -315,6 +315,10 @@ struct cpp_options
> >    /* Nonzero means process u/U prefix literals (UTF-16/32).  */
> >    unsigned char uliterals;
> >  
> > +  /* Nonzero means process r/R rax strings.  If this is set, uliterals
> > +     must be set as well.  */
> > +  unsigned char rliterals;
> > +
> 
> s/rax/raw/

Thanks, fixed.

Index: include/cpplib.h
===================================================================
--- include/cpplib.h	(revision 177868)
+++ include/cpplib.h	(revision 177869)
@@ -315,7 +315,7 @@
   /* Nonzero means process u/U prefix literals (UTF-16/32).  */
   unsigned char uliterals;
 
-  /* Nonzero means process r/R rax strings.  If this is set, uliterals
+  /* Nonzero means process r/R raw strings.  If this is set, uliterals
      must be set as well.  */
   unsigned char rliterals;
 
Index: ChangeLog
===================================================================
--- ChangeLog	(revision 177868)
+++ ChangeLog	(revision 177869)
@@ -1,5 +1,9 @@
 2011-08-18  Joseph Myers  <joseph@codesourcery.com>
 
+	* include/cpplib.h (struct cpp_options): Fix typo.
+
+2011-08-18  Joseph Myers  <joseph@codesourcery.com>
+
 	* include/cpplib.h (struct cpp_options): Add rliterals.
 	* init.c  (struct lang_flags, lang_defaults): Add rliterals.
 	(cpp_set_lang): Set rliterals option.

-- 
Joseph S. Myers
joseph@codesourcery.com



More information about the Gcc-patches mailing list