emacs-diffs
[Top][All Lists]
Advanced

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

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


From: Stefan Monnier
Subject: [Emacs-diffs] Changes to emacs/src/xdisp.c
Date: Fri, 23 May 2003 19:32:56 -0400

Index: emacs/src/xdisp.c
diff -c emacs/src/xdisp.c:1.829 emacs/src/xdisp.c:1.830
*** emacs/src/xdisp.c:1.829     Sat May 10 12:27:35 2003
--- emacs/src/xdisp.c   Fri May 23 19:32:55 2003
***************
*** 1,5 ****
  /* Display generation from window structure and buffer text.
!    Copyright (C) 1985,86,87,88,93,94,95,97,98,99, 2000, 2001, 2002, 2003
     Free Software Foundation, Inc.
  
  This file is part of GNU Emacs.
--- 1,5 ----
  /* Display generation from window structure and buffer text.
!    Copyright (C) 1985,86,87,88,93,94,95,97,98,99,2000,01,02,03
     Free Software Foundation, Inc.
  
  This file is part of GNU Emacs.
***************
*** 14927,14934 ****
    int literal = 0;
  
   tail_recurse:
!   if (depth > 10)
!     goto invalid;
  
    depth++;
  
--- 14927,14934 ----
    int literal = 0;
  
   tail_recurse:
!   if (depth > 100)
!     elt = build_string ("*too-deep*");
  
    depth++;
  
***************
*** 15283,15296 ****
  
      default:
      invalid:
!       if (frame_title_ptr)
!       n += store_frame_title ("*invalid*", 0, precision - n);
!       else if (!NILP (mode_line_string_list))
!       n += store_mode_line_string ("*invalid*", Qnil, 0, 0, precision - n, 
Qnil);
!       else
!       n += display_string ("*invalid*", Qnil, Qnil, 0, 0, it, 0,
!                            precision - n, 0, 0);
!       return n;
      }
  
    /* Pad to FIELD_WIDTH.  */
--- 15283,15290 ----
  
      default:
      invalid:
!       elt = build_string ("*invalid*");
!       goto tail_recurse;
      }
  
    /* Pad to FIELD_WIDTH.  */




reply via email to

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