diff options
Diffstat (limited to 'src/docparser.cpp')
-rw-r--r-- | src/docparser.cpp | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/docparser.cpp b/src/docparser.cpp index 3641caa..66b0203 100644 --- a/src/docparser.cpp +++ b/src/docparser.cpp @@ -41,9 +41,16 @@ #include "searchindex.h" #include "language.h" +// debug off #define DBG(x) do {} while(0) + +// debug to stdout //#define DBG(x) printf x +// debug to stderr +//#define myprintf(x...) fprintf(stderr,x) +//#define DBG(x) myprintf x + #define INTERNAL_ASSERT(x) do {} while(0) //#define INTERNAL_ASSERT(x) if (!(x)) DBG(("INTERNAL_ASSERT(%s) failed retval=0x%x: file=%s line=%d\n",#x,retval,__FILE__,__LINE__)); @@ -3347,7 +3354,8 @@ int DocParamList::parse(const QString &cmdName) g_hasReturnCommand=TRUE; checkArgumentName(g_token->name,FALSE); } - m_params.append(g_token->name); + //m_params.append(g_token->name); + handleLinkedWord(this,m_params); tok=doctokenizerYYlex(); } doctokenizerYYsetStatePara(); |