diff options
| author | Stefan Monnier | 2001-10-14 20:19:10 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2001-10-14 20:19:10 +0000 |
| commit | 67964c67c6b3f4601dc787b921425b621a3b23e7 (patch) | |
| tree | a811a99757e483afe206ba74cbec6274c1f84467 /src | |
| parent | 0c88c9374c4eceb690a2cd8ced8f3edeaacca52b (diff) | |
| download | emacs-67964c67c6b3f4601dc787b921425b621a3b23e7.tar.gz emacs-67964c67c6b3f4601dc787b921425b621a3b23e7.zip | |
(skip_invisible): Use new retval of TEXT_PROP_MEANS_INVISIBLE.
Diffstat (limited to 'src')
| -rw-r--r-- | src/indent.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/indent.c b/src/indent.c index c843ba27536..d8ede2ad0e8 100644 --- a/src/indent.c +++ b/src/indent.c | |||
| @@ -270,9 +270,7 @@ 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 (NILP (window) | 273 | if (TEXT_PROP_MEANS_INVISIBLE (prop) > NILP (window)) |
| 274 | ? TEXT_PROP_MEANS_INVISIBLE_NOELLIPSIS (prop) | ||
| 275 | : TEXT_PROP_MEANS_INVISIBLE (prop)) | ||
| 276 | return *next_boundary_p; | 274 | return *next_boundary_p; |
| 277 | return pos; | 275 | return pos; |
| 278 | } | 276 | } |