config: Access OPT_MUST_SAVE in the real option, not alias.
[elinks/elinks-j605.git] / src / scripting / perl / perl.c
blobee714f4b5e6c41b870d828e640a45d0aba3e8d40
1 /* Perl module */
3 #ifdef HAVE_CONFIG_H
4 #include "config.h"
5 #endif
7 #include "elinks.h"
9 #include "main/module.h"
10 #include "scripting/perl/core.h"
11 #include "scripting/perl/hooks.h"
14 struct module perl_scripting_module = struct_module(
15 /* name: */ "Perl",
16 /* options: */ NULL,
17 /* hooks: */ perl_scripting_hooks,
18 /* submodules: */ NULL,
19 /* data: */ NULL,
20 /* init: */ init_perl,
21 /* done: */ cleanup_perl