emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/src/indent.c


From: Stefan Monnier
Subject: [Emacs-diffs] Changes to emacs/src/indent.c
Date: Wed, 09 Jul 2003 10:50:22 -0400

Index: emacs/src/indent.c
diff -c emacs/src/indent.c:1.156 emacs/src/indent.c:1.157
*** emacs/src/indent.c:1.156    Sat May 24 17:59:01 2003
--- emacs/src/indent.c  Wed Jul  9 10:50:21 2003
***************
*** 1,5 ****
  /* Indentation functions.
!    Copyright (C) 1985,86,87,88,93,94,95,98, 2000, 2001, 2002
     Free Software Foundation, Inc.
  
  This file is part of GNU Emacs.
--- 1,5 ----
  /* Indentation functions.
!    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,381 ****
    /* 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)
        || Z != Z_BYTE)
      return current_column_1 ();
  
--- 374,381 ----
    /* If the buffer has overlays, text properties,
       or multibyte characters, use a more general algorithm.  */
    if (BUF_INTERVALS (current_buffer)
!       || current_buffer->overlays_before
!       || current_buffer->overlays_after
        || Z != Z_BYTE)
      return current_column_1 ();
  




reply via email to

[Prev in Thread] Current Thread [Next in Thread]