>From 572cfeba145eb8e94e1acc5bbdbeeae87ba3447c Mon Sep 17 00:00:00 2001
From: Jochen Keil <jochen.keil@emlix.com>
Date: Fri, 29 Jan 2010 10:32:35 +0100
Subject: [PATCH 2/9] print whitespace after namespace declaration
---
tcl-dox.l | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/tcl-dox.l b/tcl-dox.l
index 6d1a1ff..ac3a69b 100644
--- a/tcl-dox.l
+++ b/tcl-dox.l
@@ -116,7 +116,7 @@ WS [ \t]
}
"namespace eval"[ \t]+ {
- fprintf(yyout, "%s", "namespace");
+ fprintf(yyout, "%s", "namespace ");
BEGIN(NAMESPACE);
}
--
1.6.6.1