emacs-diffs
[Top][All Lists]
Advanced

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

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


From: Richard M . Stallman
Subject: [Emacs-diffs] Changes to emacs/src/xterm.c
Date: Thu, 03 Feb 2005 02:36:15 -0500

Index: emacs/src/xterm.c
diff -c emacs/src/xterm.c:1.859 emacs/src/xterm.c:1.860
*** emacs/src/xterm.c:1.859     Thu Jan 27 22:34:05 2005
--- emacs/src/xterm.c   Thu Feb  3 07:36:15 2005
***************
*** 7770,7779 ****
     It kills all frames on the display that we got the error for.
     If that was the only one, it prints an error message and kills Emacs.  */
  
! /* It is after x_error_handler so that it won't get inlined in
!    x_error_handler.  */
  
! static void
  x_error_quitter (display, error)
       Display *display;
       XErrorEvent *error;
--- 7770,7787 ----
     It kills all frames on the display that we got the error for.
     If that was the only one, it prints an error message and kills Emacs.  */
  
! /* .gdbinit puts a breakpoint here, so make sure it is not inlined.  */
  
! #if __GNUC__ >= 3  /* On GCC 3.0 we might get a warning.  */
! #define NO_INLINE __attribute__((noinline))
! #else
! #define NO_INLINE
! #endif
! 
! /* On older GCC versions, just putting x_error_quitter
!    after x_error_handler prevents inlining into the former.  */
! 
! static void NO_INLINE
  x_error_quitter (display, error)
       Display *display;
       XErrorEvent *error;




reply via email to

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