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: Ken Raeburn
Subject: [Emacs-diffs] Changes to emacs/src/xterm.c
Date: Tue, 16 Jul 2002 11:50:10 -0400

Index: emacs/src/xterm.c
diff -c emacs/src/xterm.c:1.744 emacs/src/xterm.c:1.745
*** emacs/src/xterm.c:1.744     Sun Jul 14 20:00:41 2002
--- emacs/src/xterm.c   Tue Jul 16 11:50:09 2002
***************
*** 12131,12137 ****
    record_unwind_protect (x_catch_errors_unwind, x_error_message_string);
  
    x_error_message_string = make_uninit_string (X_ERROR_MESSAGE_SIZE);
!   SREF (x_error_message_string, 0) = 0;
  
    return count;
  }
--- 12131,12137 ----
    record_unwind_protect (x_catch_errors_unwind, x_error_message_string);
  
    x_error_message_string = make_uninit_string (X_ERROR_MESSAGE_SIZE);
!   SSET (x_error_message_string, 0, 0);
  
    return count;
  }
***************
*** 12181,12187 ****
  x_clear_errors (dpy)
       Display *dpy;
  {
!   SREF (x_error_message_string, 0) = 0;
  }
  
  /* Stop catching X protocol errors and let them make Emacs die.
--- 12181,12187 ----
  x_clear_errors (dpy)
       Display *dpy;
  {
!   SSET (x_error_message_string, 0, 0);
  }
  
  /* Stop catching X protocol errors and let them make Emacs die.



reply via email to

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