mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-23 16:30:46 -08:00
(struct Lisp_Buffer_Local_Value):
Field car renamed to realvalue. New fields check_frame, found_for_buffer, found_for_frame, buffer, frame.
This commit is contained in:
parent
b0d2a9e796
commit
4bfba59e50
1 changed files with 9 additions and 4 deletions
13
src/lisp.h
13
src/lisp.h
|
|
@ -827,10 +827,15 @@ struct Lisp_Buffer_Objfwd
|
|||
Only make-local-variable does that. */
|
||||
struct Lisp_Buffer_Local_Value
|
||||
{
|
||||
int type : 16; /* = Lisp_Misc_Buffer_Local_Value
|
||||
or Lisp_Misc_Some_Buffer_Local_Value */
|
||||
int spacer : 16;
|
||||
Lisp_Object car, cdr;
|
||||
int type : 16; /* = Lisp_Misc_Buffer_Local_Value
|
||||
or Lisp_Misc_Some_Buffer_Local_Value */
|
||||
int spacer : 13;
|
||||
unsigned int check_frame : 1;
|
||||
unsigned int found_for_buffer : 1;
|
||||
unsigned int found_for_frame : 1;
|
||||
Lisp_Object realvalue;
|
||||
Lisp_Object buffer, frame;
|
||||
Lisp_Object cdr;
|
||||
};
|
||||
|
||||
/* In an overlay object, the mark bit of the plist is used as the GC mark.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue