mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-27 07:30:59 -08:00
(current_column): Use new type for overlays_(before|after).
This commit is contained in:
parent
fbebdf8131
commit
3ea2f6f3ef
1 changed files with 3 additions and 3 deletions
|
|
@ -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 @@ current_column ()
|
|||
/* 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 ();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue