diff options
author | Jörg Sommer <joerg@jo-so.de> | 2024-01-01 19:10:20 +0100 |
---|---|---|
committer | Oliver Kiddle <opk@zsh.org> | 2024-01-28 00:23:56 +0100 |
commit | 4929910267a00b8f9958d9e1710580e30d1d5a18 (patch) | |
tree | 2bbc909d777b287e37a2693da5bdcb99d2464567 | |
parent | 98affe1115dfdab932432c09160f46ca3d269fb7 (diff) | |
download | zsh-4929910267a00b8f9958d9e1710580e30d1d5a18.tar.gz zsh-4929910267a00b8f9958d9e1710580e30d1d5a18.tar.xz zsh-4929910267a00b8f9958d9e1710580e30d1d5a18.zip |
52444: module: Mark name argument of some functions const
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | Src/module.c | 15 |
2 files changed, 11 insertions, 7 deletions
diff --git a/ChangeLog b/ChangeLog index 16e012d5b..8cdd990d6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2024-01-28 Oliver Kiddle <opk@zsh.org> + * Jörg Sommer: 52444: Src/module.c: Mark name argument of some + functions const + * Jörg Sommer: 52441: Src/Zle/zle_vi.c: Mark variables as const * Jörg Sommer: 52440: Src/Zle/textobjects.c: Mark variables as const diff --git a/Src/module.c b/Src/module.c index a6005f30b..b4b5d0a2c 100644 --- a/Src/module.c +++ b/Src/module.c @@ -356,7 +356,7 @@ finish_(UNUSED(Module m)) /**/ void -register_module(char *n, Module_void_func setup, +register_module(const char *n, Module_void_func setup, Module_features_func features, Module_enables_func enables, Module_void_func boot, @@ -846,7 +846,7 @@ Hookdef hooktab; /**/ Hookdef -gethookdef(char *n) +gethookdef(const char *n) { Hookdef p; @@ -974,7 +974,7 @@ deletehookdeffunc(Hookdef h, Hookfn f) /**/ mod_export int -deletehookfunc(char *n, Hookfn f) +deletehookfunc(const char *n, Hookfn f) { Hookdef h = gethookdef(n); @@ -1766,7 +1766,7 @@ dyn_finish_module(Module m) #else static Module_generic_func -module_func(Module m, char *name) +module_func(Module m, const char *name) { #ifdef DYNAMIC_NAME_CLASH_OK return (Module_generic_func) dlsym(m->u.handle, name); @@ -2443,7 +2443,7 @@ bin_zmodload(char *nam, char **args, Options ops, UNUSED(int func)) int ops_au = OPT_ISSET(ops,'a') || OPT_ISSET(ops,'u'); int ret = 1, autoopts; /* options only allowed with -F */ - char *fonly = "lP", *fp; + const char *fonly = "lP", *fp; if (ops_bcpf && !ops_au) { zwarnnam(nam, "-b, -c, -f, and -p must be combined with -a or -u"); @@ -3182,7 +3182,7 @@ bin_zmodload_features(const char *nam, char **args, Options ops) } else if (OPT_ISSET(ops, 'L')) printf("zmodload -F %s ", m->node.nam); for (fp = features, ep = enables; *fp; fp++, ep++) { - char *onoff; + const char *onoff; int term; if (*args) { char **argp; @@ -3452,7 +3452,8 @@ autofeatures(const char *cmdnam, const char *module, char **features, defm = NULL; for (; *features; features++) { - char *fnam, *typnam, *feature; + char *fnam, *feature; + const char *typnam; int add, fchar, flags = defflags; autofeaturefn_t fn; |