Mercurial > hg > xemacs-beta
diff src/symbols.c @ 4924:ba353d7b0ce8
temporarily back out part of patch to avoid compile probs
-------------------- ChangeLog entries follow: --------------------
src/ChangeLog addition:
2010-02-03 Ben Wing <ben@xemacs.org>
* symbols.c (defsymbol_massage_name_1):
* symbols.c (defsymbol_nodump):
* symbols.c (defsymbol):
* symbols.c (defkeyword):
* symeval.h (DEFVAR_SYMVAL_FWD_OBJECT):
Temporarily back out staticpro-related changes in symbols.c and
symeval.h to fix compile problems, will put back when `latest-fix'
workspace gets merged in.
author | Ben Wing <ben@xemacs.org> |
---|---|
date | Wed, 03 Feb 2010 09:30:49 -0600 |
parents | 17362f371cc2 |
children | cbe181529c34 |
line wrap: on
line diff
--- a/src/symbols.c Wed Feb 03 08:50:00 2010 -0600 +++ b/src/symbols.c Wed Feb 03 09:30:49 2010 -0600 @@ -3562,9 +3562,9 @@ temp[i] = '-'; *location = Fintern (make_string ((const Ibyte *) temp, len), Qnil); if (dump_p) - staticpro_1 (location, name); + staticpro (location); else - staticpro_nodump_1 (location, name); + staticpro_nodump (location); } void @@ -3598,7 +3598,7 @@ *location = Fintern (make_string_nocopy ((const Ibyte *) name, strlen (name)), Qnil); - staticpro_nodump_1 (location, name); + staticpro_nodump (location); } void @@ -3607,7 +3607,7 @@ *location = Fintern (make_string_nocopy ((const Ibyte *) name, strlen (name)), Qnil); - staticpro_1 (location, name); + staticpro (location); } void