aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1998-01-02 23:12:03 +0000
committerRichard M. Stallman <[email protected]>1998-01-02 23:12:03 +0000
commit7d92db58826b2333e7c318251dc178fa99fc32cc (patch)
tree96db245ed6562f0892a181a19e11300ebdb7a92a /src
parentc5059c2cf2ca8505d084574e014053659d62e3e0 (diff)
(make_gap): Set GPT_BYTE along with GPT.
Diffstat (limited to 'src')
-rw-r--r--src/insdel.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/insdel.c b/src/insdel.c
index ae05a5ffe8..ded0fca99d 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.