From 3338104b0f3bae1f219c36d0bf5c06b819a0c5a4 Mon Sep 17 00:00:00 2001 From: Hackerpilot Date: Fri, 22 Jun 2012 11:01:05 -0700 Subject: [PATCH] cleanup --- editors/textadept/modules/dmd/init.lua | 2 -- 1 file changed, 2 deletions(-) diff --git a/editors/textadept/modules/dmd/init.lua b/editors/textadept/modules/dmd/init.lua index 4aafd1c..a7e54c5 100755 --- a/editors/textadept/modules/dmd/init.lua +++ b/editors/textadept/modules/dmd/init.lua @@ -26,7 +26,6 @@ local M = {} _M.common.cstyle = require "common.cstyle" -local callStack = _M.common.cstyle.callStack if type(_G.snippets) == 'table' then _G.snippets.dmd = {} @@ -381,7 +380,6 @@ events.connect(events.CHAR_ADDED, function(ch) .. fileName .. " " .. buffer.current_pos .. " -I" .. buffer.filename:match(".+[\\/]") local p = io.popen(command) local r = p:read("*a") - print ("[[" .. r .. "]]") if r ~= "\n" then if character == "." then showCompletionList(r)