Mercurial > emacs
diff src/intervals.c @ 14036:621a575db6f7
Comment fixes.
| author | Karl Heuer <kwzh@gnu.org> |
|---|---|
| date | Fri, 05 Jan 1996 10:03:17 +0000 |
| parents | 49df58305295 |
| children | ee40177f6c68 |
line wrap: on
line diff
--- a/src/intervals.c Fri Jan 05 08:57:33 1996 +0000 +++ b/src/intervals.c Fri Jan 05 10:03:17 1996 +0000 @@ -680,7 +680,7 @@ 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 @@ /* 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 @@ } /* 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 @@ /* 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))
