aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJim Blandy1992-07-17 22:17:57 +0000
committerJim Blandy1992-07-17 22:17:57 +0000
commite373f2011039e1efb38ac7de3c7cf1c94c8acb8c (patch)
tree69ad2635eb0a022d47e45875bb5107d2c4502285 /src
parentc0acc3e1cd36b203b6c1c37241fe634c5cfa3a54 (diff)
downloademacs-e373f2011039e1efb38ac7de3c7cf1c94c8acb8c.tar.gz
emacs-e373f2011039e1efb38ac7de3c7cf1c94c8acb8c.zip
*** empty log message ***
Diffstat (limited to 'src')
-rw-r--r--src/xfns.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/xfns.c b/src/xfns.c
index 12e211a5127..5eef329e6ca 100644
--- a/src/xfns.c
+++ b/src/xfns.c
@@ -1671,6 +1671,17 @@ x_window (f)
1671 class_hints.res_class = EMACS_CLASS; 1671 class_hints.res_class = EMACS_CLASS;
1672 XSetClassHint (x_current_display, f->display.x->window_desc, &class_hints); 1672 XSetClassHint (x_current_display, f->display.x->window_desc, &class_hints);
1673 1673
1674 /* x_set_name normally ignores requests to set the name if the
1675 requested name is the same as the current name. This is the one
1676 place where that assumption isn't correct; f->name is set, but
1677 the X server hasn't been told. */
1678 {
1679 Lisp_Object name = f->name;
1680
1681 f->name = Qnil;
1682 x_set_name (f, name, Qnil);
1683 }
1684
1674 XDefineCursor (XDISPLAY f->display.x->window_desc, 1685 XDefineCursor (XDISPLAY f->display.x->window_desc,
1675 f->display.x->text_cursor); 1686 f->display.x->text_cursor);
1676 UNBLOCK_INPUT; 1687 UNBLOCK_INPUT;