started using a comma as a parameter/argument separator.

changed to use & as a string concatenation method in the string class.
added some code to support variadic arguments
This commit is contained in:
hyunghwan.chung
2016-12-13 15:18:19 +00:00
parent f88027af32
commit bcaf4e5e1e
15 changed files with 118 additions and 36 deletions

View File

@ -325,7 +325,7 @@ static void dl_close (stix_t* stix, void* handle)
#elif defined(__MSDOS__) && defined(QSE_ENABLE_DOS_DYNAMIC_MODULE)
FreeModule (handle);
#else
/* nothing to do */
/* nothing to do */
#endif
}
@ -488,6 +488,7 @@ static char* syntax_error_msg[] =
") expected",
"] expected",
". expected",
", expected",
"| expected",
"> expected",
":= expected",