aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEli Zaretskii2009-11-28 10:50:31 +0000
committerEli Zaretskii2009-11-28 10:50:31 +0000
commitb55fa3c00f25d2070870c24aa19faa434fdcb452 (patch)
tree733c9c2f9345ab769c6c47b2a312a476e6f5f2c5 /src
parentb640eb527cc88dec67100514c58799e014fafbe4 (diff)
downloademacs-b55fa3c00f25d2070870c24aa19faa434fdcb452.tar.gz
emacs-b55fa3c00f25d2070870c24aa19faa434fdcb452.zip
(skip_invisible): Fix a typo in a comment.
Diffstat (limited to 'src')
-rw-r--r--src/indent.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/indent.c b/src/indent.c
index c8c486a48fa..9aed10b0356 100644
--- a/src/indent.c
+++ b/src/indent.c
@@ -253,7 +253,7 @@ skip_invisible (pos, next_boundary_p, to, window)
253 { 253 {
254 /* Don't scan terribly far. */ 254 /* Don't scan terribly far. */
255 XSETFASTINT (proplimit, min (pos + 100, to)); 255 XSETFASTINT (proplimit, min (pos + 100, to));
256 /* No matter what. don't go past next overlay change. */ 256 /* No matter what, don't go past next overlay change. */
257 if (XFASTINT (overlay_limit) < XFASTINT (proplimit)) 257 if (XFASTINT (overlay_limit) < XFASTINT (proplimit))
258 proplimit = overlay_limit; 258 proplimit = overlay_limit;
259 tmp = Fnext_single_property_change (position, Qinvisible, 259 tmp = Fnext_single_property_change (position, Qinvisible,