diff options
| author | Stefan Monnier | 2001-10-12 22:31:23 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2001-10-12 22:31:23 +0000 |
| commit | fe14a5445b6c39b40a06bb425958c97d4d7522df (patch) | |
| tree | edd2ddc8d9f0563b52946c8b39dee90155437a8d /src | |
| parent | 6f3f6a8d4bf65676d7e53a64a6d6fc7a992a6770 (diff) | |
| download | emacs-fe14a5445b6c39b40a06bb425958c97d4d7522df.tar.gz emacs-fe14a5445b6c39b40a06bb425958c97d4d7522df.zip | |
(skip_invisible): Don't skip "ellipsisized" text.
Diffstat (limited to 'src')
| -rw-r--r-- | src/indent.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/indent.c b/src/indent.c index 04768e37f2a..f2d5eb03675 100644 --- a/src/indent.c +++ b/src/indent.c | |||
| @@ -270,7 +270,9 @@ skip_invisible (pos, next_boundary_p, to, window) | |||
| 270 | prop = Fget_char_property (position, Qinvisible, window); | 270 | prop = Fget_char_property (position, Qinvisible, window); |
| 271 | else | 271 | else |
| 272 | prop = Fget_char_property (position, Qinvisible, buffer); | 272 | prop = Fget_char_property (position, Qinvisible, buffer); |
| 273 | if (TEXT_PROP_MEANS_INVISIBLE (prop)) | 273 | if (NILP (window) |
| 274 | ? TEXT_PROP_MEANS_INVISIBLE_NOELLIPSIS (prop) | ||
| 275 | : TEXT_PROP_MEANS_INVISIBLE (prop)) | ||
| 274 | return *next_boundary_p; | 276 | return *next_boundary_p; |
| 275 | return pos; | 277 | return pos; |
| 276 | } | 278 | } |