Skip to content
Snippets Groups Projects
Commit 0a4515f6 authored by Tinny Ng's avatar Tinny Ng
Browse files

[Bug 3788] very long lines in CppErrMsgs_EN_US.hpp causes problems for OS390 compiler.

git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@174086 13f79535-47bb-0310-9956-ffa450edef68
parent c1653874
No related branches found
No related tags found
No related merge requests found
This diff is collapsed.
/* /*
* The Apache Software License, Version 1.1 * The Apache Software License, Version 1.1
* *
* Copyright (c) 1999-2000 The Apache Software Foundation. All rights * Copyright (c) 1999-2000 The Apache Software Foundation. All rights
* reserved. * reserved.
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions * modification, are permitted provided that the following conditions
* are met: * are met:
* *
* 1. Redistributions of source code must retain the above copyright * 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 * 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in * notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the * the documentation and/or other materials provided with the
* distribution. * distribution.
* *
* 3. The end-user documentation included with the redistribution, * 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 * "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)." * Apache Software Foundation (http://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself, * Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear. * if and wherever such third-party acknowledgments normally appear.
* *
* 4. The names "Xerces" and "Apache Software Foundation" must * 4. The names "Xerces" and "Apache Software Foundation" must
* not be used to endorse or promote products derived from this * 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. * permission, please contact apache\@apache.org.
* *
* 5. Products derived from this software may not be called "Apache", * 5. Products derived from this software may not be called "Apache",
* nor may "Apache" appear in their name, without prior written * nor may "Apache" appear in their name, without prior written
* permission of the Apache Software Foundation. * permission of the Apache Software Foundation.
* *
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
...@@ -45,7 +45,7 @@ ...@@ -45,7 +45,7 @@
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE. * SUCH DAMAGE.
* ==================================================================== * ====================================================================
* *
* This software consists of voluntary contributions made by many * This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation, and was * individuals on behalf of the Apache Software Foundation, and was
* originally based on software copyright (c) 1999, International * originally based on software copyright (c) 1999, International
...@@ -56,6 +56,9 @@ ...@@ -56,6 +56,9 @@
/* /*
* $Log$ * $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 * Revision 1.4 2000/03/02 19:55:53 roddey
* This checkin includes many changes done while waiting for the * 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 * 1.1.0 code to be finished. I can't list them all here, but a list is
...@@ -151,8 +154,15 @@ CppSrcFormatter::nextMessage(const XMLCh* const msgText ...@@ -151,8 +154,15 @@ CppSrcFormatter::nextMessage(const XMLCh* const msgText
fwprintf(fOutFl, L" , { "); fwprintf(fOutFl, L" , { ");
} }
while (*rawData) unsigned int i = 0;
while (*rawData) {
fwprintf(fOutFl, L"0x%04lX,", *rawData++); fwprintf(fOutFl, L"0x%04lX,", *rawData++);
if (++i == 35) {
i = 0;
fwprintf(fOutFl, L"\n");
fwprintf(fOutFl, L" ");
}
}
fwprintf(fOutFl, L"0x00 }\n"); fwprintf(fOutFl, L"0x00 }\n");
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment