Changes since 0.6.2: * Some WIN32 gamemode fixes. * New, experimental "stay on top" option for windows---where supported (some window managers under X; also on WIN32). * A fix to subwindows on WIN32 (longstanding problem). * Lots of documentation refinements. * Deprecation of 3 old functions that have fully functional alternatives.
15 lines
771 B
Text
15 lines
771 B
Text
$NetBSD: patch-aa,v 1.3 2004/10/08 22:33:56 thomasklausner Exp $
|
|
|
|
--- doc/dox.awk.orig 2004-09-11 05:11:07.000000000 +0200
|
|
+++ doc/dox.awk
|
|
@@ -405,8 +405,8 @@ function just_symbol(s) {
|
|
print ".Sh SYNOPSIS" >>file;
|
|
print ".In openglut.h" >>file;
|
|
printf( ".Ft" ) >>file;
|
|
- for( i = 0;
|
|
- (i < func_words) && ("OGAPIENTRY" != just_symbol(func_word[i]));
|
|
+ for( i = 0; \
|
|
+ (i < func_words) && ("OGAPIENTRY" != just_symbol(func_word[i])); \
|
|
++i )
|
|
printf( " %s", func_word [i] ) >>file;
|
|
print "" >>file;
|