summaryrefslogtreecommitdiff
path: root/src/intervals.c
diff options
context:
space:
mode:
authorKarl Heuer <kwzh@gnu.org>1996-01-05 10:03:17 +0000
committerKarl Heuer <kwzh@gnu.org>1996-01-05 10:03:17 +0000
commit5bd22ef8faca6c75d525ca858303ea7389257cb1 (patch)
treee8552da69ae0f28b512fd096b0759f7a7b72c03c /src/intervals.c
parented4c7adf5b51fa14a04dbe148f0536e2f9fb64c5 (diff)
downloademacs-5bd22ef8faca6c75d525ca858303ea7389257cb1.tar.gz
Comment fixes.
Diffstat (limited to 'src/intervals.c')
-rw-r--r--src/intervals.c8
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))