aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts
diff options
context:
space:
mode:
authorGravatar mitchell <70453897+667e-11@users.noreply.github.com>2011-12-13 10:22:26 -0500
committerGravatar mitchell <70453897+667e-11@users.noreply.github.com>2011-12-13 10:22:26 -0500
commit630919eff54519813c3263bd824fd4967ad81589 (patch)
tree54f9e843c5b5d698cd7567f6838bf6b0f8049a62 /scripts
parentddd7cb1720c3561ddd2ff850e0aefdbaf4675197 (diff)
Fixed scripts/gen_iface.lua.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/gen_iface.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/gen_iface.lua b/scripts/gen_iface.lua
index 8c0ef2d0..4954c5df 100755
--- a/scripts/gen_iface.lua
+++ b/scripts/gen_iface.lua
@@ -19,7 +19,7 @@ local s = '_G._SCINTILLA.constants'
f = io.open('../core/iface.lua', 'w')
-- Write header.
-f:write [[
+f:write [=[
-- Copyright 2007-2011 Mitchell mitchell<att>caladbolg.net. See LICENSE.
local M = {}
@@ -30,7 +30,7 @@ local M = {}
-- Do not modify anything in this module. Doing so will result in instability.
module('_SCINTILLA')]]
-]]
+]=]
-- Constants ({"constant", value}).
for item in iface:match('Constants%[%] = (%b{})'):sub(2, -2):gmatch('%b{}') do