aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts
diff options
context:
space:
mode:
authorGravatar mitchell <70453897+667e-11@users.noreply.github.com>2013-09-21 22:30:37 -0400
committerGravatar mitchell <70453897+667e-11@users.noreply.github.com>2013-09-21 22:30:37 -0400
commite18088407d2d25689c4c5b5783dee88ff210b293 (patch)
tree264847238c46ee0f520973ffc0f55be2d49ebe95 /scripts
parentcfa0bb207fc4cf6a41d8d3c3b0df8339abf4ce2a (diff)
Renamed `buffer:convert_eo_ls()` to `buffer:convert_eols()`.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/gen_iface.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/gen_iface.lua b/scripts/gen_iface.lua
index b1c71298..59362a00 100755
--- a/scripts/gen_iface.lua
+++ b/scripts/gen_iface.lua
@@ -107,6 +107,7 @@ for item in iface:match('Functions%[%] = (%b{})'):sub(2, -2):gmatch('%b{}') do
name = name:gsub('([a-z])([A-Z])', '%1_%2')
name = name:gsub('([A-Z])([A-Z][a-z])', '%1_%2')
name = name:lower()
+ if name == 'convert_eo_ls' then name = 'convert_eols' end
local line = string_format('%s={%d,%d,%d,%d}', name, msg_id, types[rt_type],
types[p1_type], types[p2_type])
functions[#functions + 1] = line