Mercurial > emacs
changeset 51838:d0e8a670d28d
(current_column): Use new type for overlays_(before|after).
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Wed, 09 Jul 2003 14:50:21 +0000 |
parents | 87ec975874ab |
children | 514920a68703 |
files | src/indent.c |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/src/indent.c Wed Jul 09 14:50:01 2003 +0000 +++ b/src/indent.c Wed Jul 09 14:50:21 2003 +0000 @@ -1,5 +1,5 @@ /* Indentation functions. - Copyright (C) 1985,86,87,88,93,94,95,98, 2000, 2001, 2002 + Copyright (C) 1985,86,87,88,93,94,95,98,2000,01,02,2003 Free Software Foundation, Inc. This file is part of GNU Emacs. @@ -374,8 +374,8 @@ /* If the buffer has overlays, text properties, or multibyte characters, use a more general algorithm. */ if (BUF_INTERVALS (current_buffer) - || !NILP (current_buffer->overlays_before) - || !NILP (current_buffer->overlays_after) + || current_buffer->overlays_before + || current_buffer->overlays_after || Z != Z_BYTE) return current_column_1 ();