tng 2002/07/31 11:39:53 Modified: c/tools/NLS/Xlat Xlat_CppSrc.cpp Log: [Bug 3788] very long lines in CppErrMsgs_EN_US.hpp causes problems for OS390 compiler. Revision Changes Path 1.5 +25 -13 xml-xerces/c/tools/NLS/Xlat/Xlat_CppSrc.cpp Index: Xlat_CppSrc.cpp =================================================================== RCS file: /home/cvs/xml-xerces/c/tools/NLS/Xlat/Xlat_CppSrc.cpp,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- Xlat_CppSrc.cpp 2 Mar 2000 19:55:53 -0000 1.4 +++ Xlat_CppSrc.cpp 31 Jul 2002 18:39:53 -0000 1.5 @@ -1,37 +1,37 @@ /* * The Apache Software License, Version 1.1 - * + * * Copyright (c) 1999-2000 The Apache Software Foundation. All rights * reserved. - * + * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: - * + * * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * + * notice, this list of conditions and the following disclaimer. + * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. - * + * * 3. The end-user documentation included with the redistribution, - * if any, must include the following acknowledgment: + * if any, must include the following acknowledgment: * "This product includes software developed by the * Apache Software Foundation (http://www.apache.org/)." * Alternately, this acknowledgment may appear in the software itself, * if and wherever such third-party acknowledgments normally appear. - * + * * 4. The names "Xerces" and "Apache Software Foundation" must * not be used to endorse or promote products derived from this - * software without prior written permission. For written + * software without prior written permission. For written * permission, please contact apache\@apache.org. - * + * * 5. Products derived from this software may not be called "Apache", * nor may "Apache" appear in their name, without prior written * permission of the Apache Software Foundation. - * + * * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE @@ -45,7 +45,7 @@ * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * ==================================================================== - * + * * This software consists of voluntary contributions made by many * individuals on behalf of the Apache Software Foundation, and was * originally based on software copyright (c) 1999, International @@ -56,6 +56,9 @@ /* * $Log$ + * Revision 1.5 2002/07/31 18:39:53 tng + * [Bug 3788] very long lines in CppErrMsgs_EN_US.hpp causes problems for OS390 compiler. + * * Revision 1.4 2000/03/02 19:55:53 roddey * This checkin includes many changes done while waiting for the * 1.1.0 code to be finished. I can't list them all here, but a list is @@ -151,8 +154,15 @@ fwprintf(fOutFl, L" , { "); } - while (*rawData) + unsigned int i = 0; + while (*rawData) { fwprintf(fOutFl, L"0x%04lX,", *rawData++); + if (++i == 35) { + i = 0; + fwprintf(fOutFl, L"\n"); + fwprintf(fOutFl, L" "); + } + } fwprintf(fOutFl, L"0x00 }\n"); }
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]