aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/indent.c6
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
5This file is part of GNU Emacs. 5This 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