From 8e6208c5d2c91d70f2338d1c3d788e194c6c9d52 Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Fri, 5 Jan 1996 10:03:17 +0000 Subject: Comment fixes. --- src/intervals.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/intervals.c') diff --git a/src/intervals.c b/src/intervals.c index 279d8e6739a..1d528058498 100644 --- a/src/intervals.c +++ b/src/intervals.c @@ -680,7 +680,7 @@ previous_interval (interval) Modifications are needed to handle the hungry bits -- after simply finding the interval at position (don't add length going down), if it's the beginning of the interval, get the previous interval - and check the hugry bits of both. Then add the length going back up + and check the hungry bits of both. Then add the length going back up to the root. */ static INTERVAL @@ -793,7 +793,7 @@ adjust_intervals_for_insertion (tree, position, length) /* Even if we are positioned between intervals, we default to the left one if it exists. We extend it now and split - off a part later, if stickyness demands it. */ + off a part later, if stickiness demands it. */ for (temp = prev ? prev : i;! NULL_INTERVAL_P (temp); temp = temp->parent) { temp->total_length += length; @@ -801,7 +801,7 @@ adjust_intervals_for_insertion (tree, position, length) } /* If at least one interval has sticky properties, - we check the stickyness property by property. */ + we check the stickiness property by property. */ if (END_NONSTICKY_P (prev) || FRONT_STICKY_P (i)) { Lisp_Object pleft, pright; @@ -1516,7 +1516,7 @@ graft_intervals_into_buffer (source, position, length, buffer, inherit) /* The inserted text "sticks" to the interval `under', which means it gets those properties. The properties of under are the result of - adjust_intervals_for_insertion, so stickyness has + adjust_intervals_for_insertion, so stickiness has already been taken care of. */ while (! NULL_INTERVAL_P (over)) -- cgit v1.2.1