comparison src/emodules.c @ 4522:fc7067b7f407

Backout last patch; forgot to specify file.
author Stephen J. Turnbull <stephen@xemacs.org>
date Wed, 29 Oct 2008 03:37:16 +0900
parents 383ab474a241
children 726060ee587c
comparison
equal deleted inserted replaced
4521:383ab474a241 4522:fc7067b7f407
94 Messages informing you of the progress of the load are displayed unless 94 Messages informing you of the progress of the load are displayed unless
95 the variable `load-modules-quietly' is non-NIL. 95 the variable `load-modules-quietly' is non-NIL.
96 */ 96 */
97 (file, name, version)) 97 (file, name, version))
98 { 98 {
99 const CIbyte *mod, *mname, *mver; 99 CIbyte *mod, *mname, *mver;
100 int speccount = specpdl_depth(); 100 int speccount = specpdl_depth();
101 101
102 CHECK_STRING(file); 102 CHECK_STRING(file);
103 103
104 mod = (CIbyte *) XSTRING_DATA (file); 104 mod = (CIbyte *) XSTRING_DATA (file);
134 soon as the last reference to symbols within the module is destroyed. 134 soon as the last reference to symbols within the module is destroyed.
135 */ 135 */
136 (file, name, version)) 136 (file, name, version))
137 { 137 {
138 int x; 138 int x;
139 const CIbyte *mod, *mname, *mver; 139 CIbyte *mod, *mname, *mver;
140 Lisp_Object foundname = Qnil; 140 Lisp_Object foundname = Qnil;
141 struct gcpro gcpro1; 141 struct gcpro gcpro1;
142 142
143 CHECK_STRING(file); 143 CHECK_STRING(file);
144 144