]> source.dussan.org Git - rspamd.git/commitdiff
[Fix] Use short comments rather than long one
authorPetr Vaněk <arkamar@atlas.cz>
Sat, 20 Jan 2024 14:22:22 +0000 (15:22 +0100)
committerPetr Vaněk <arkamar@atlas.cz>
Mon, 22 Jan 2024 10:35:08 +0000 (11:35 +0100)
Rspamd fails to start with Lua-5.1 because long comment does not allow
nesting, see [1]. This change replaces it to short comments in order to
fix the issue but preserves this part as comment in docs.

[1] https://www.lua.org/manual/5.1/manual.html#7.1

Bug: https://bugs.gentoo.org/922522
Fixes: b189c9fea633 ("[Minor] lua_maps docs: apply formatting")
Fixes: https://github.com/rspamd/rspamd/issues/4784
lualib/lua_maps.lua

index 1bcce6066d14971b7ed44d379c35da983a001a6c..a88c4ca1a9ad48324b850938ee2ad1782b0bdb43 100644 (file)
@@ -561,9 +561,9 @@ exports.rspamd_maybe_check_map = rspamd_maybe_check_map
 --     optional = true,
 --   }
 -- }
--- --[[ Then this function will look for opts.my_map parameter and try to replace it's with
--- a map with the specific type, description but not failing if it was empty.
--- It will also set options.my_map_orig to the original value defined in the map --]]
+-- -- Then this function will look for opts.my_map parameter and try to replace it's with
+-- -- a map with the specific type, description but not failing if it was empty.
+-- -- It will also set options.my_map_orig to the original value defined in the map.
 --]]
 exports.fill_config_maps = function(mname, opts, map_defs)
   assert(type(opts) == 'table')