Mercurial > hg > xemacs-beta
diff src/dlopen.c @ 251:677f6a0ee643 r20-5b24
Import from CVS: tag r20-5b24
author | cvs |
---|---|
date | Mon, 13 Aug 2007 10:19:59 +0200 |
parents | 51092a27c943 |
children | 727739f917cb |
line wrap: on
line diff
--- a/src/dlopen.c Mon Aug 13 10:19:12 2007 +0200 +++ b/src/dlopen.c Mon Aug 13 10:19:59 2007 +0200 @@ -113,21 +113,15 @@ function = dlsym (handle, "syms_of"); if (function) - { - function (); - } + (*function) (); function = dlsym (handle, "vars_of"); if (function) - { - function (); - } + (*function) (); function = dlsym (handle, "complex_vars_of"); if (function) - { - function (); - } + (*function) (); return Qnil; }