fixed comment style

git-svn-id: svn://svn.code.sf.net/p/ctags/code/trunk@761 c5d04d22-be80-434c-894e-aa346cc9e8e8
This commit is contained in:
dfishburn 2010-06-04 12:40:28 +00:00
parent 703dd72c97
commit 410c03a895
1 changed files with 8 additions and 6 deletions

14
sql.c
View File

@ -875,12 +875,14 @@ static void parseSubProgram (tokenInfo *const token)
if (isType (token, TOKEN_PERIOD))
{
// If this is an Oracle package, then the token->scope should
// already be set. If this is the case, also add this value to the
// scope.
// If this is not an Oracle package, chances are the scope should be
// blank and the value just read is the OWNER or CREATOR of the
// function and should not be considered part of the scope.
/*
* If this is an Oracle package, then the token->scope should
* already be set. If this is the case, also add this value to the
* scope.
* If this is not an Oracle package, chances are the scope should be
* blank and the value just read is the OWNER or CREATOR of the
* function and should not be considered part of the scope.
*/
if ( vStringLength(saveScope) > 0 )
{
addToScope(token, name->string);