diff options
author | Karl Heuer <kwzh@gnu.org> | 1996-01-05 10:03:17 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1996-01-05 10:03:17 +0000 |
commit | 8e6208c5d2c91d70f2338d1c3d788e194c6c9d52 (patch) | |
tree | 8f5bfe00dcb80384d562fad62d2166df9b06bec0 /src/intervals.c | |
parent | 34035df32674d5a6a4eb4112dfa5ea69b4dec64f (diff) | |
download | emacs-8e6208c5d2c91d70f2338d1c3d788e194c6c9d52.tar.gz |
Comment fixes.
Diffstat (limited to 'src/intervals.c')
-rw-r--r-- | src/intervals.c | 8 |
1 files changed, 4 insertions, 4 deletions
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)) |