diff options
| author | Eli Zaretskii | 2009-11-28 10:50:31 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2009-11-28 10:50:31 +0000 |
| commit | b55fa3c00f25d2070870c24aa19faa434fdcb452 (patch) | |
| tree | 733c9c2f9345ab769c6c47b2a312a476e6f5f2c5 /src | |
| parent | b640eb527cc88dec67100514c58799e014fafbe4 (diff) | |
| download | emacs-b55fa3c00f25d2070870c24aa19faa434fdcb452.tar.gz emacs-b55fa3c00f25d2070870c24aa19faa434fdcb452.zip | |
(skip_invisible): Fix a typo in a comment.
Diffstat (limited to 'src')
| -rw-r--r-- | src/indent.c | 2 |
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, |