]> git.eshelyaron.com Git - emacs.git/commitdiff
Comment changes.
authorRichard M. Stallman <rms@gnu.org>
Thu, 1 Jul 1999 14:16:44 +0000 (14:16 +0000)
committerRichard M. Stallman <rms@gnu.org>
Thu, 1 Jul 1999 14:16:44 +0000 (14:16 +0000)
src/intervals.c

index 1a5c2c95322bf4f1ff5b22179fa43211fab5d7e5..159cc3693accc7b2db738ffc28c09ec460ad525c 100644 (file)
@@ -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),