diff options
| author | Joakim Verona | 2012-09-03 17:30:17 +0200 |
|---|---|---|
| committer | Joakim Verona | 2012-09-03 17:30:17 +0200 |
| commit | 4a37733c693d59a9b83a3fb2d0c7f9461d149f60 (patch) | |
| tree | a33402e09342f748baebf0e4f5a1e40538e620f4 /src/xterm.c | |
| parent | 5436d1df5e2ba0b4d4f72b03a1cd09b20403654b (diff) | |
| parent | dcde497f27945c3ca4ce8c21f655ef6f627acdd2 (diff) | |
| download | emacs-4a37733c693d59a9b83a3fb2d0c7f9461d149f60.tar.gz emacs-4a37733c693d59a9b83a3fb2d0c7f9461d149f60.zip | |
upstream
Diffstat (limited to 'src/xterm.c')
| -rw-r--r-- | src/xterm.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/src/xterm.c b/src/xterm.c index c5a916d9d2e..23cc72305ba 100644 --- a/src/xterm.c +++ b/src/xterm.c | |||
| @@ -168,13 +168,6 @@ struct x_display_info *x_display_list; | |||
| 168 | 168 | ||
| 169 | Lisp_Object x_display_name_list; | 169 | Lisp_Object x_display_name_list; |
| 170 | 170 | ||
| 171 | /* Frame being updated by update_frame. This is declared in term.c. | ||
| 172 | This is set by update_begin and looked at by all the XT functions. | ||
| 173 | It is zero while not inside an update. In that case, the XT | ||
| 174 | functions assume that `selected_frame' is the frame to apply to. */ | ||
| 175 | |||
| 176 | extern struct frame *updating_frame; | ||
| 177 | |||
| 178 | /* This is a frame waiting to be auto-raised, within XTread_socket. */ | 171 | /* This is a frame waiting to be auto-raised, within XTread_socket. */ |
| 179 | 172 | ||
| 180 | static struct frame *pending_autoraise_frame; | 173 | static struct frame *pending_autoraise_frame; |
| @@ -7864,7 +7857,7 @@ x_connection_closed (Display *dpy, const char *error_message) | |||
| 7864 | (https://bugzilla.gnome.org/show_bug.cgi?id=85715). Once, | 7857 | (https://bugzilla.gnome.org/show_bug.cgi?id=85715). Once, |
| 7865 | the resulting Glib error message loop filled a user's disk. | 7858 | the resulting Glib error message loop filled a user's disk. |
| 7866 | To avoid this, kill Emacs unconditionally on disconnect. */ | 7859 | To avoid this, kill Emacs unconditionally on disconnect. */ |
| 7867 | shut_down_emacs (0, 0, Qnil); | 7860 | shut_down_emacs (0, Qnil); |
| 7868 | fprintf (stderr, "%s\n\ | 7861 | fprintf (stderr, "%s\n\ |
| 7869 | When compiled with GTK, Emacs cannot recover from X disconnects.\n\ | 7862 | When compiled with GTK, Emacs cannot recover from X disconnects.\n\ |
| 7870 | This is a GTK bug: https://bugzilla.gnome.org/show_bug.cgi?id=85715\n\ | 7863 | This is a GTK bug: https://bugzilla.gnome.org/show_bug.cgi?id=85715\n\ |
| @@ -10627,8 +10620,6 @@ x_activate_timeout_atimer (void) | |||
| 10627 | 10620 | ||
| 10628 | /* Set up use of X before we make the first connection. */ | 10621 | /* Set up use of X before we make the first connection. */ |
| 10629 | 10622 | ||
| 10630 | extern frame_parm_handler x_frame_parm_handlers[]; | ||
| 10631 | |||
| 10632 | static struct redisplay_interface x_redisplay_interface = | 10623 | static struct redisplay_interface x_redisplay_interface = |
| 10633 | { | 10624 | { |
| 10634 | x_frame_parm_handlers, | 10625 | x_frame_parm_handlers, |
| @@ -10833,8 +10824,6 @@ x_initialize (void) | |||
| 10833 | XSetIOErrorHandler (x_io_error_quitter); | 10824 | XSetIOErrorHandler (x_io_error_quitter); |
| 10834 | 10825 | ||
| 10835 | signal (SIGPIPE, x_connection_signal); | 10826 | signal (SIGPIPE, x_connection_signal); |
| 10836 | |||
| 10837 | xgselect_initialize (); | ||
| 10838 | } | 10827 | } |
| 10839 | 10828 | ||
| 10840 | 10829 | ||