summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1999-07-01 14:16:44 +0000
committerRichard M. Stallman <rms@gnu.org>1999-07-01 14:16:44 +0000
commite6ef099f411d9820e04c2bf03dea765bb62b8c2d (patch)
tree0af7bd83fd350f5a94447cee663f7f7c1791e2f8
parent62f0e46e2b012b73661e60d8bab65eee0c87169d (diff)
downloademacs-e6ef099f411d9820e04c2bf03dea765bb62b8c2d.tar.gz
Comment changes.
-rw-r--r--src/intervals.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/intervals.c b/src/intervals.c
index 1a5c2c95322..159cc3693ac 100644
--- a/src/intervals.c
+++ b/src/intervals.c
@@ -1886,7 +1886,7 @@ set_point_both (buffer, charpos, bytepos)
Qintangible, Qnil);
/* If following char is intangible,
- skip back over all chars with matching intangible property. */
+ skip forward over all chars with matching intangible property. */
if (! NILP (intangible_propval))
while (XINT (pos) < BUF_ZV (buffer)
&& EQ (Fget_char_property (pos, Qintangible, Qnil),
@@ -2001,7 +2001,7 @@ move_if_not_intangible (position)
Qintangible, Qnil);
/* If following char is intangible,
- skip back over all chars with matching intangible property. */
+ skip forward over all chars with matching intangible property. */
if (! NILP (intangible_propval))
while (XINT (pos) < ZV
&& EQ (Fget_char_property (pos, Qintangible, Qnil),