aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1993-08-11 21:08:13 +0000
committerRichard M. Stallman1993-08-11 21:08:13 +0000
commitcdf0b096898da72c0f52dda5c65a21b016b950b5 (patch)
tree5549d58ed3a705028fd92d26742a8f1cfa617f44 /src
parentd4ff74c8bed5617e14f7f109c27db2d2bac61d7e (diff)
downloademacs-cdf0b096898da72c0f52dda5c65a21b016b950b5.tar.gz
emacs-cdf0b096898da72c0f52dda5c65a21b016b950b5.zip
(verify_overlay_modification): initialize endpos.
Diffstat (limited to 'src')
-rw-r--r--src/buffer.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/buffer.c b/src/buffer.c
index 1b7bb6f9b75..7480d89234e 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -1946,6 +1946,7 @@ verify_overlay_modification (start, end)
1946 ostart = OVERLAY_START (overlay); 1946 ostart = OVERLAY_START (overlay);
1947 oend = OVERLAY_END (overlay); 1947 oend = OVERLAY_END (overlay);
1948 startpos = OVERLAY_POSITION (ostart); 1948 startpos = OVERLAY_POSITION (ostart);
1949 endpos = OVERLAY_POSITION (oend);
1949 if (XFASTINT (end) < startpos) 1950 if (XFASTINT (end) < startpos)
1950 break; 1951 break;
1951 if (XFASTINT (end) == startpos && insertion) 1952 if (XFASTINT (end) == startpos && insertion)