Changed from hexadecimal escapes to octal, since hex might be causing

problems...


git-svn-id: file:///fltk/svn/fltk/trunk@103 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Michael R Sweet
1998-11-25 15:54:43 +00:00
parent f840da44d1
commit a7d3bafa5a
+3 -3
View File
@@ -1,5 +1,5 @@
// //
// "$Id: code.cxx,v 1.4 1998/10/21 16:28:58 mike Exp $" // "$Id: code.cxx,v 1.5 1998/11/25 15:54:43 mike Exp $"
// //
// Code output routines for the Fast Light Tool Kit (FLTK). // Code output routines for the Fast Light Tool Kit (FLTK).
// //
@@ -187,7 +187,7 @@ void write_cstring(const char *w, int length) {
default: default:
if (c < ' ' || c >= 127) { if (c < ' ' || c >= 127) {
QUOTENEXT: QUOTENEXT:
fprintf(code_file, "\\x%02x",c&255); fprintf(code_file, "\\%03o",c&255);
linelength += 4; linelength += 4;
c = *w; c = *w;
if (w < e && (c>='0'&&c<='9' || c>='a'&&c<='f' || c>='A'&&c<='F')) { if (w < e && (c>='0'&&c<='9' || c>='a'&&c<='f' || c>='A'&&c<='F')) {
@@ -290,5 +290,5 @@ void Fl_Type::write_code1() {
void Fl_Type::write_code2() {} void Fl_Type::write_code2() {}
// //
// End of "$Id: code.cxx,v 1.4 1998/10/21 16:28:58 mike Exp $". // End of "$Id: code.cxx,v 1.5 1998/11/25 15:54:43 mike Exp $".
// //