# HG changeset patch # User Richard M. Stallman # Date 744276511 0 # Node ID 9657ef911049ea8bd40e9685a93e0e025f2e17d8 # Parent b9ce445fb406af9815d3ebf8aefe6dec0e653b3c (Fmove_overlay): Avoid initializer for Lisp_Object vars. (verify_overlay_modification): Declare ostart, oend as Lisp_Object. diff -r b9ce445fb406 -r 9657ef911049 src/buffer.c --- a/src/buffer.c Mon Aug 02 07:23:24 1993 +0000 +++ b/src/buffer.c Mon Aug 02 07:28:31 1993 +0000 @@ -1616,10 +1616,12 @@ else /* Redisplay the area the overlay has just left, or just enclosed. */ { - Lisp_Object o_beg = OVERLAY_START (overlay); - Lisp_Object o_end = OVERLAY_END (overlay); + Lisp_Object o_beg; + Lisp_Object o_end; int change_beg, change_end; + o_beg = OVERLAY_START (overlay); + o_end = OVERLAY_END (overlay); o_beg = OVERLAY_POSITION (o_beg); o_end = OVERLAY_POSITION (o_end); @@ -1903,7 +1905,7 @@ tail = XCONS (tail)->cdr) { int startpos, endpos; - int ostart, oend; + Lisp_Object ostart, oend; overlay = XCONS (tail)->car; @@ -1937,7 +1939,7 @@ tail = XCONS (tail)->cdr) { int startpos, endpos; - int ostart, oend; + Lisp_Object ostart, oend; overlay = XCONS (tail)->car;