Mercurial > hg > xemacs-beta
comparison 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 |
comparison
equal
deleted
inserted
replaced
250:f385a461c9aa | 251:677f6a0ee643 |
---|---|
111 Should we take care to execute the other two? My fingers are | 111 Should we take care to execute the other two? My fingers are |
112 getting itchy! */ | 112 getting itchy! */ |
113 | 113 |
114 function = dlsym (handle, "syms_of"); | 114 function = dlsym (handle, "syms_of"); |
115 if (function) | 115 if (function) |
116 { | 116 (*function) (); |
117 function (); | |
118 } | |
119 | 117 |
120 function = dlsym (handle, "vars_of"); | 118 function = dlsym (handle, "vars_of"); |
121 if (function) | 119 if (function) |
122 { | 120 (*function) (); |
123 function (); | |
124 } | |
125 | 121 |
126 function = dlsym (handle, "complex_vars_of"); | 122 function = dlsym (handle, "complex_vars_of"); |
127 if (function) | 123 if (function) |
128 { | 124 (*function) (); |
129 function (); | |
130 } | |
131 | 125 |
132 return Qnil; | 126 return Qnil; |
133 } | 127 } |
134 | 128 |
135 void syms_of_dlopen () | 129 void syms_of_dlopen () |