diff options
| author | Stefan Monnier | 2003-07-09 14:50:21 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2003-07-09 14:50:21 +0000 |
| commit | 3ea2f6f3efc6522221ae33cefb3efe2444793c59 (patch) | |
| tree | a72cb14cb86588533aa77579ec25af62f69dedd9 /src | |
| parent | fbebdf8131e2dbe6c4fe641145f5384ee4d7e3bb (diff) | |
| download | emacs-3ea2f6f3efc6522221ae33cefb3efe2444793c59.tar.gz emacs-3ea2f6f3efc6522221ae33cefb3efe2444793c59.zip | |
(current_column): Use new type for overlays_(before|after).
Diffstat (limited to 'src')
| -rw-r--r-- | src/indent.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/indent.c b/src/indent.c index 10831c2c941..e21c9a2b867 100644 --- a/src/indent.c +++ b/src/indent.c | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | /* Indentation functions. | 1 | /* Indentation functions. |
| 2 | Copyright (C) 1985,86,87,88,93,94,95,98, 2000, 2001, 2002 | 2 | Copyright (C) 1985,86,87,88,93,94,95,98,2000,01,02,2003 |
| 3 | Free Software Foundation, Inc. | 3 | Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | This file is part of GNU Emacs. | 5 | This file is part of GNU Emacs. |
| @@ -374,8 +374,8 @@ current_column () | |||
| 374 | /* If the buffer has overlays, text properties, | 374 | /* If the buffer has overlays, text properties, |
| 375 | or multibyte characters, use a more general algorithm. */ | 375 | or multibyte characters, use a more general algorithm. */ |
| 376 | if (BUF_INTERVALS (current_buffer) | 376 | if (BUF_INTERVALS (current_buffer) |
| 377 | || !NILP (current_buffer->overlays_before) | 377 | || current_buffer->overlays_before |
| 378 | || !NILP (current_buffer->overlays_after) | 378 | || current_buffer->overlays_after |
| 379 | || Z != Z_BYTE) | 379 | || Z != Z_BYTE) |
| 380 | return current_column_1 (); | 380 | return current_column_1 (); |
| 381 | 381 | ||