1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-10-28 05:00:59 +01:00

manual/9087

This commit is contained in:
Tanaka Akira 1999-12-16 19:31:55 +00:00
parent 6188986468
commit c85a3deae8
2 changed files with 3 additions and 1 deletions

View file

@ -1,5 +1,7 @@
name=zsh/zutil
moddeps="complete"
objects="zutil.o"
autobins="zformat zstyle"

View file

@ -296,7 +296,7 @@ load_and_bind(const char *fn)
int err = loadbind(0, (void *) addbuiltin, ret);
for (node = firstnode(modules); !err && node; incnode(node)) {
Module m = (Module) getdata(node);
if (m->u.handle)
if (m->u.handle && !(m->flags & MOD_LINKED))
err |= loadbind(0, m->u.handle, ret);
}