From a01e7d27bd3c17ef69c984866b1870b69689e9f9 Mon Sep 17 00:00:00 2001 From: Bruce Hill <bitbucket@bruce-hill.com> Date: Tue, 29 May 2018 19:23:28 -0700 Subject: [PATCH] Removed ldt shim --- nomsu.lua | 2 +- nomsu.moon | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/nomsu.lua b/nomsu.lua index 075a125..7778abd 100644 --- a/nomsu.lua +++ b/nomsu.lua @@ -1748,7 +1748,7 @@ OPTIONS do local ldt ok, ldt = pcall(require, 'ldt') - if ok and false then + if ok then ldt.guard(run) else xpcall(run, err_hand) diff --git a/nomsu.moon b/nomsu.moon index d5b3115..7562cee 100755 --- a/nomsu.moon +++ b/nomsu.moon @@ -1229,7 +1229,7 @@ OPTIONS --require('ProFi')\profile "scratch/profile.txt", (profi)-> do ok, ldt = pcall(require,'ldt') - if ok and false + if ok ldt.guard run else xpcall(run, err_hand)