X-Git-Url: http://git.hcoop.net/bpt/emacs.git/blobdiff_plain/34035df32674d5a6a4eb4112dfa5ea69b4dec64f..8e6208c5d2c91d70f2338d1c3d788e194c6c9d52:/src/intervals.c diff --git a/src/intervals.c b/src/intervals.c index 279d8e6739..1d52805849 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))