From 4f028a18b1c81338f4ca3f55c5c056e7d3b3103d Mon Sep 17 00:00:00 2001 From: nakst <> Date: Mon, 7 Feb 2022 08:24:16 +0000 Subject: [PATCH] scripting engine fix ExternalSystemSleepMs on mac --- apps/script_console.cpp | 12 ++++++++++-- util/script.c | 2 +- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/apps/script_console.cpp b/apps/script_console.cpp index 07484f6..a291c7d 100644 --- a/apps/script_console.cpp +++ b/apps/script_console.cpp @@ -595,6 +595,14 @@ const EsStyle styleListRowOdd = { }; const EsStyle styleTable = { + .metrics = { + .mask = ES_THEME_METRICS_CLIP_ENABLED | ES_THEME_METRICS_GAP_MAJOR, + .clipEnabled = true, + .gapMajor = 6, + }, +}; + +const EsStyle styleList = { .metrics = { .mask = ES_THEME_METRICS_CLIP_ENABLED, .clipEnabled = true, @@ -625,7 +633,7 @@ void AddREPLResult(ExecutionContext *context, EsElement *parent, Node *type, Val const char *valueText; size_t valueBytes; ScriptHeapEntryToString(context, entry, &valueText, &valueBytes); - char *buffer = EsStringAllocateAndFormat(&bytes, "\"%s\"", valueBytes, valueText); + char *buffer = EsStringAllocateAndFormat(&bytes, "\u201C%s\u201D", valueBytes, valueText); EsTextDisplayCreate(parent, ES_CELL_H_FILL, &styleOutputData, buffer, bytes); } else if (type->type == T_LIST && type->firstChild->type == T_STRUCT) { EsAssert(context->heapEntriesAllocated > (uint64_t) value.i); @@ -669,7 +677,7 @@ void AddREPLResult(ExecutionContext *context, EsElement *parent, Node *type, Val } } else if (type->type == T_LIST) { normalList:; - EsPanel *panel = EsPanelCreate(parent, ES_CELL_H_FILL | ES_PANEL_VERTICAL | ES_PANEL_STACK, &styleTable); + EsPanel *panel = EsPanelCreate(parent, ES_CELL_H_FILL | ES_PANEL_VERTICAL | ES_PANEL_STACK, &styleList); EsAssert(context->heapEntriesAllocated > (uint64_t) value.i); HeapEntry *entry = &context->heap[value.i]; EsAssert(entry->type == T_LIST); diff --git a/util/script.c b/util/script.c index f1433f7..c80fc72 100644 --- a/util/script.c +++ b/util/script.c @@ -5741,7 +5741,7 @@ int ExternalSystemSleepMs(ExecutionContext *context, Value *returnValue) { return 4; #else struct timespec sleepTime; - uint64_t x = 1000000 * coroutine->externalCoroutineData.i; + uint64_t x = 1000000 * context->c->externalCoroutineData.i; sleepTime.tv_sec = x / 1000000000; sleepTime.tv_nsec = x % 1000000000; nanosleep(&sleepTime, NULL);