]> git.lyx.org Git - lyx.git/blobdiff - boost/boost/format/internals.hpp
Don't allow newline characters in document settings.
[lyx.git] / boost / boost / format / internals.hpp
index c1e824c75a4a1f2e594f38bb8ea069f847a7aafe..b0d874a1fb4a26020a6a3026e444c65391029c6a 100644 (file)
@@ -148,7 +148,7 @@ namespace detail {
 
     template<class Ch, class Tr> inline
     void stream_format_state<Ch,Tr>:: reset(Ch fill) {
-        // set our params to standard's default state.   cf ยง 27.4.4.1 of the C++ norm
+        // set our params to standard's default state.   cf 27.4.4.1 of the C++ norm
         width_=0; precision_=6; 
         fill_=fill; // default is widen(' '), but we cant compute it without the locale
         flags_ = std::ios_base::dec | std::ios_base::skipws;