Mercurial > hg > xemacs-beta
comparison src/emodules.c @ 444:576fb035e263 r21-2-37
Import from CVS: tag r21-2-37
author | cvs |
---|---|
date | Mon, 13 Aug 2007 11:36:19 +0200 |
parents | abe6d1db359e |
children | 183866b06e0b |
comparison
equal
deleted
inserted
replaced
443:a8296e22da4e | 444:576fb035e263 |
---|---|
77 XEmacs, and then reload those new or changed modules that are required. | 77 XEmacs, and then reload those new or changed modules that are required. |
78 | 78 |
79 Messages informing you of the progress of the load are displayed unless | 79 Messages informing you of the progress of the load are displayed unless |
80 the variable `load-modules-quietly' is non-NIL. | 80 the variable `load-modules-quietly' is non-NIL. |
81 */ | 81 */ |
82 (file,name,version)) | 82 (file, name, version)) |
83 { | 83 { |
84 char *mod, *mname, *mver; | 84 char *mod, *mname, *mver; |
85 int speccount = specpdl_depth(); | 85 int speccount = specpdl_depth(); |
86 | 86 |
87 CHECK_STRING(file); | 87 CHECK_STRING(file); |
116 for the module to be unloaded from memory, as there may be Lisp objects | 116 for the module to be unloaded from memory, as there may be Lisp objects |
117 referring to variables inside the module code. However, once you have | 117 referring to variables inside the module code. However, once you have |
118 requested a module to be unloaded, it will be unloaded from memory as | 118 requested a module to be unloaded, it will be unloaded from memory as |
119 soon as the last reference to symbols within the module is destroyed. | 119 soon as the last reference to symbols within the module is destroyed. |
120 */ | 120 */ |
121 (file,name,version)) | 121 (file, name, version)) |
122 { | 122 { |
123 int x; | 123 int x; |
124 char *mod, *mname, *mver; | 124 char *mod, *mname, *mver; |
125 | 125 |
126 CHECK_STRING(file); | 126 CHECK_STRING(file); |