10000 update fix for 10.8 release · ChatScript/ChatScript@12ee59e · GitHub
[go: up one dir, main page]

Skip to content

Commit 12ee59e

Browse files
committed
update fix for 10.8 release
1 parent 0f6eb76 commit 12ee59e

File tree

8 files changed

+2
-1
lines changed

8 files changed

+2
-1
lines changed

BINARIES/ChatScriptMssql.exe

0 Bytes
Binary file not shown.

BINARIES/ChatScriptMysql.exe

0 Bytes
Binary file not shown.

BINARIES/ChatScriptmongo.exe

0 Bytes
Binary file not shown.

BINARIES/ChatScriptpg.exe

0 Bytes
Binary file not shown.

BINARIES/chatscript.dll

0 Bytes
Binary file not shown.

BINARIES/chatscript.exe

0 Bytes
Binary file not shown.

SRC/json.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1608,6 +1608,7 @@ char* jwrite(char* buffer, WORDP D, int subject,bool plain )
16081608
bool usequote = !plain || !NotPlain(Meaning2Word(F->verb)->word);
16091609
if (usequote) strcpy(buffer++,(char*)"\""); // put out key in quotes
16101610
WriteMeaning(F->verb,NULL,buffer);
1611+
buffer += strlen(buffer);
16111612
if (usequote)
16121613
{
16131614
strcpy(buffer, (char*)"\": ");

SRC/mainSystem.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1117,12 +1117,12 @@ unsigned int InitSystem(int argcx, char * argvx[],char* unchangedPath, char* rea
11171117
argv = argvx;
11181118

11191119
ReadConfig();
1120+
if (configUrl != NULL) LoadconfigFromUrl(configUrl, configHeaders, headerCount);
11201121

11211122
HandlePermanentBuffers(true);
11221123

11231124
quitting = false;
11241125
echo = true;
1125-
if (configUrl != NULL) LoadconfigFromUrl(configUrl, configHeaders, headerCount);
11261126
ProcessArguments(argc,argv);
11271127
MakeDirectory(tmpfolder);
11281128
if (argumentsSeen) (*printer)("\r\n");

0 commit comments

Comments
 (0)
0