Removed bosities around example code; not sure where that stuff crept
in!
diff --git a/Doc/lib/libstat.tex b/Doc/lib/libstat.tex
index ad4bf89..1f55e84 100644
--- a/Doc/lib/libstat.tex
+++ b/Doc/lib/libstat.tex
@@ -109,15 +109,8 @@
             print 'Skipping %s/%s' % (dir, f)
 
 def f(file):
--Egon
-
-
-
     print 'frobbed', file
 
-if __name__ == '__main__': process(sys.argv[1], f)
+if __name__ == '__main__':
+    process(sys.argv[1], f)
 \end{verbatim}
-
--Egon
-
-