# HG changeset patch # User Richard M. Stallman # Date 889742942 0 # Node ID 81b02a3ea5e0cad7cdb70ed5fed8898321590240 # Parent 0d20aa45f4935197223df323568a194a9650601b (struct Lisp_Buffer_Local_Value): Field car renamed to realvalue. New fields check_frame, found_for_buffer, found_for_frame, buffer, frame. diff -r 0d20aa45f493 -r 81b02a3ea5e0 src/lisp.h --- a/src/lisp.h Thu Mar 12 22:44:12 1998 +0000 +++ b/src/lisp.h Thu Mar 12 22:49:02 1998 +0000 @@ -827,10 +827,15 @@ 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.