diff options
| author | Joseph Myers <joseph@codesourcery.com> | 2011-08-18 16:24:45 +0100 |
|---|---|---|
| committer | Joseph Myers <jsm28@gcc.gnu.org> | 2011-08-18 16:24:45 +0100 |
| commit | 7c1ffff9f2bb49e9dc27ed41c58bdf26dcda091e (patch) | |
| tree | 70577eea201638209e2e19c7ff21387f0ebd4c4b /libcpp | |
| parent | a48e3dd10e2e898742f2a730b8307b73b1a23022 (diff) | |
| download | gcc-7c1ffff9f2bb49e9dc27ed41c58bdf26dcda091e.tar.gz gcc-7c1ffff9f2bb49e9dc27ed41c58bdf26dcda091e.tar.bz2 gcc-7c1ffff9f2bb49e9dc27ed41c58bdf26dcda091e.zip | |
* include/cpplib.h (struct cpp_options): Fix typo.
From-SVN: r177869
Diffstat (limited to 'libcpp')
| -rw-r--r-- | libcpp/ChangeLog | 4 | ||||
| -rw-r--r-- | libcpp/include/cpplib.h | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/libcpp/ChangeLog b/libcpp/ChangeLog index ad514735366..4ee03638d15 100644 --- a/libcpp/ChangeLog +++ b/libcpp/ChangeLog @@ -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. diff --git a/libcpp/include/cpplib.h b/libcpp/include/cpplib.h index 30b1e983c4a..4d68fa76b09 100644 --- a/libcpp/include/cpplib.h +++ b/libcpp/include/cpplib.h @@ -315,7 +315,7 @@ 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 + /* Nonzero means process r/R raw strings. If this is set, uliterals must be set as well. */ unsigned char rliterals; |
