From: Richard M. Stallman Date: Fri, 2 Jan 1998 23:12:03 +0000 (+0000) Subject: (make_gap): Set GPT_BYTE along with GPT. X-Git-Tag: emacs-20.3~2500 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=7d92db58826b2333e7c318251dc178fa99fc32cc;p=emacs.git (make_gap): Set GPT_BYTE along with GPT. --- diff --git a/src/insdel.c b/src/insdel.c index ae05a5ffe87..ded0fca99d8 100644 --- a/src/insdel.c +++ b/src/insdel.c @@ -524,6 +524,7 @@ make_gap (nbytes_added) /* Call the newly allocated space a gap at the end of the whole space. */ GPT = Z + GAP_SIZE; + GPT_BYTE = Z_BYTE + GAP_SIZE; GAP_SIZE = nbytes_added; /* Move the new gap down to be consecutive with the end of the old one.