comparison src/ChangeLog @ 85328:d0d527210b0c

* lisp.h (enum Lisp_Misc_Type): Del Lisp_Misc_Some_Buffer_Local_Value. (XMISCANY): New macro. (XMISCTYPE): Use it. (struct Lisp_Misc_Any): New type. (union Lisp_Misc): Use it. (struct Lisp_Buffer_Local_Value): Add `local_if_set' bit. * data.c (Fboundp, store_symval_forwarding, swap_in_global_binding) (find_symbol_value, set_internal, default_value, Fset_default) (Fmake_variable_buffer_local, Fmake_local_variable) (Fkill_local_variable, Fmake_variable_frame_local, Flocal_variable_p) (Flocal_variable_if_set_p, Fvariable_binding_locus): The SOME_BUFFER_LOCAL_VALUEP distinction is replaced by local_if_set. * alloc.c (allocate_buffer): Set the size and tag. (allocate_misc, mark_maybe_object, mark_object, survives_gc_p): Use XMISCANY. (die): Follow the GNU convention for error messages. * print.c (print_object): SOME_BUFFER_LOCAL_VALUEP -> local_if_set. * buffer.c (Fget_buffer_create, Fmake_indirect_buffer): Don't set the tag any more. (set_buffer_internal_1): * frame.c (store_frame_param): * eval.c (specbind): * xdisp.c (select_frame_for_redisplay): Drop SOME_BUFFER_LOCAL_VALUEP.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Tue, 16 Oct 2007 15:42:58 +0000
parents 228a7fde2f4a
children ad9922c079e4
comparison
equal deleted inserted replaced
85327:84eaa97c1d65 85328:d0d527210b0c
1 2007-10-16 Stefan Monnier <monnier@iro.umontreal.ca> 1 2007-10-16 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * lisp.h (enum Lisp_Misc_Type): Del Lisp_Misc_Some_Buffer_Local_Value.
4 (XMISCANY): New macro.
5 (XMISCTYPE): Use it.
6 (struct Lisp_Misc_Any): New type.
7 (union Lisp_Misc): Use it.
8 (struct Lisp_Buffer_Local_Value): Add `local_if_set' bit.
9 * data.c (Fboundp, store_symval_forwarding, swap_in_global_binding)
10 (find_symbol_value, set_internal, default_value, Fset_default)
11 (Fmake_variable_buffer_local, Fmake_local_variable)
12 (Fkill_local_variable, Fmake_variable_frame_local, Flocal_variable_p)
13 (Flocal_variable_if_set_p, Fvariable_binding_locus):
14 The SOME_BUFFER_LOCAL_VALUEP distinction is replaced by local_if_set.
15 * alloc.c (allocate_buffer): Set the size and tag.
16 (allocate_misc, mark_maybe_object, mark_object, survives_gc_p):
17 Use XMISCANY.
18 (die): Follow the GNU convention for error messages.
19 * print.c (print_object): SOME_BUFFER_LOCAL_VALUEP -> local_if_set.
20 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer): Don't set the
21 tag any more.
22 (set_buffer_internal_1):
23 * frame.c (store_frame_param):
24 * eval.c (specbind):
25 * xdisp.c (select_frame_for_redisplay): Drop SOME_BUFFER_LOCAL_VALUEP.
2 26
3 * doc.c (Fsnarf_documentation): Simplify. 27 * doc.c (Fsnarf_documentation): Simplify.
4 28
5 2007-10-14 Juanma Barranquero <lekktu@gmail.com> 29 2007-10-14 Juanma Barranquero <lekktu@gmail.com>
6 30