aboutsummaryrefslogtreecommitdiffstats
path: root/src/term.c
diff options
context:
space:
mode:
authorKaroly Lorentey2005-09-11 03:15:42 +0000
committerKaroly Lorentey2005-09-11 03:15:42 +0000
commit62af879c72eb791a0e0096ae2c739e8c2649d2fc (patch)
treea9693d099cfd030230b0ab688c2f6ad7114775ef /src/term.c
parent6bac16160743017637d0a77399cd4530f454e74b (diff)
downloademacs-62af879c72eb791a0e0096ae2c739e8c2649d2fc.tar.gz
emacs-62af879c72eb791a0e0096ae2c739e8c2649d2fc.zip
Fix crashes in xdialog_show (and other places) with xterm-mouse-mode.
* src/dispextern.h (get_tty_device): Declare. * src/dispnew.c (Fsend_string_to_terminal): Add optional TERMINAL parameter. * src/fns.c (Fy_or_n_p, Fyes_or_no_p): Don't try to open an X dialog on tty terminals. * src/term.c (get_tty_device): Remove static qualifier. * src/xmenu.c (create_and_show_dialog, create_and_show_popup_menu) (free_frame_menubar, mouse_position_for_popup, set_frame_menubar) (update_frame_menubar, x_activate_menubar, xdialog_show, xmenu_show): Abort when given a non-X frame. * src/xmenu.c (Fx_popup_menu, Fx_popup_dialog): Throw an error when run on a non-X frame. git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-410
Diffstat (limited to 'src/term.c')
-rw-r--r--src/term.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/term.c b/src/term.c
index 77720779baf..3b3f0ad2132 100644
--- a/src/term.c
+++ b/src/term.c
@@ -85,8 +85,6 @@ static void turn_off_face P_ ((struct frame *, int face_id));
85static void tty_show_cursor P_ ((struct tty_display_info *)); 85static void tty_show_cursor P_ ((struct tty_display_info *));
86static void tty_hide_cursor P_ ((struct tty_display_info *)); 86static void tty_hide_cursor P_ ((struct tty_display_info *));
87 87
88static struct device *get_tty_device (Lisp_Object device);
89
90void delete_initial_device P_ ((struct device *)); 88void delete_initial_device P_ ((struct device *));
91void create_tty_output P_ ((struct frame *)); 89void create_tty_output P_ ((struct frame *));
92void delete_tty_output P_ ((struct frame *)); 90void delete_tty_output P_ ((struct frame *));
@@ -2164,11 +2162,11 @@ get_device (Lisp_Object device, int throw)
2164 2162
2165/* Return the tty display object specified by DEVICE. */ 2163/* Return the tty display object specified by DEVICE. */
2166 2164
2167static struct device * 2165struct device *
2168get_tty_device (Lisp_Object device) 2166get_tty_device (Lisp_Object terminal)
2169{ 2167{
2170 struct device *d = get_device (device, 0); 2168 struct device *d = get_device (terminal, 0);
2171 2169
2172 if (d && d->type == output_initial) 2170 if (d && d->type == output_initial)
2173 d = NULL; 2171 d = NULL;
2174 2172