Revision: 474
http://redbutton.svn.sourceforge.net/redbutton/?rev=474&view=rev
Author: skilvington
Date: 2008-01-09 09:06:53 -0800 (Wed, 09 Jan 2008)
Log Message:
-----------
make mhegd output prettier
Modified Paths:
--------------
redbutton-author/trunk/output.c
Modified: redbutton-author/trunk/output.c
===================================================================
--- redbutton-author/trunk/output.c 2008-01-09 16:48:01 UTC (rev 473)
+++ redbutton-author/trunk/output.c 2008-01-09 17:06:53 UTC (rev 474)
@@ -54,7 +54,14 @@
print_newline(out);
print_token(out, tok);
}
- else if(tok[0] == ':' && strcmp(tok, ":ContentRef") != 0)
+ else if(tok[0] == ':'
+ && strcmp(tok, ":GBoolean") != 0
+ && strcmp(tok, ":GInteger") != 0
+ && strcmp(tok, ":GOctetString") != 0
+ && strcmp(tok, ":GObjectRef") != 0
+ && strcmp(tok, ":GContentRef") != 0
+ && strcmp(tok, ":IndirectRef") != 0
+ && strcmp(tok, ":ContentRef") != 0)
{
print_newline(out);
print_token(out, tok);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|