# HG changeset patch # User Karl Heuer # Date 781272574 0 # Node ID 405b269631c35fceae89f9bf9ba0d4a0a1d091ca # Parent 0f29bb3f784fced8d6f2f4c130da15c8185f649c (insert_1, insert_from_string_1): Use new accessor macros instead of calling XSET directly. diff -r 0f29bb3f784f -r 405b269631c3 src/insdel.c --- a/src/insdel.c Tue Oct 04 12:08:52 1994 +0000 +++ b/src/insdel.c Tue Oct 04 12:09:34 1994 +0000 @@ -334,7 +334,7 @@ register Lisp_Object temp; /* Make sure point-max won't overflow after this insertion. */ - XSET (temp, Lisp_Int, length + Z); + XSETINT (temp, length + Z); if (length + Z != XINT (temp)) error ("maximum buffer size exceeded"); @@ -400,7 +400,7 @@ struct gcpro gcpro1; /* Make sure point-max won't overflow after this insertion. */ - XSET (temp, Lisp_Int, length + Z); + XSETINT (temp, length + Z); if (length + Z != XINT (temp)) error ("maximum buffer size exceeded");