From: Miles Bader Date: Tue, 2 Jul 1996 16:25:19 +0000 (+0000) Subject: (x_clear_frame_selections): Don't call redisplay_preserve_echo_area here. X-Git-Tag: emacs-19.34~277 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=996b804dde127409f56d63f4dc85f180a17e0c28;p=emacs.git (x_clear_frame_selections): Don't call redisplay_preserve_echo_area here. --- diff --git a/src/xselect.c b/src/xselect.c index 9e4681f5dc4..118c2649348 100644 --- a/src/xselect.c +++ b/src/xselect.c @@ -834,7 +834,11 @@ x_clear_frame_selections (f) { for (; CONSP (hooks); hooks = Fcdr (hooks)) call1 (Fcar (hooks), selection_symbol); +#if 0 /* This can crash when deleting a frame + from x_connection_closed. Anyway, it seems unnecessary; + something else should cause a redisplay. */ redisplay_preserve_echo_area (); +#endif } Vselection_alist = Fcdr (Vselection_alist); @@ -854,7 +858,9 @@ x_clear_frame_selections (f) { for (; CONSP (hooks); hooks = Fcdr (hooks)) call1 (Fcar (hooks), selection_symbol); +#if 0 /* See above */ redisplay_preserve_echo_area (); +#endif } XCONS (rest)->cdr = Fcdr (XCONS (rest)->cdr); break;