diff options
author | Richard M. Stallman <rms@gnu.org> | 2002-11-06 05:03:33 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2002-11-06 05:03:33 +0000 |
commit | bc4e60fc842855d91b46080ba133dba2213a2d21 (patch) | |
tree | 8bfdcd1b04b927d3914bb9cd8b8d5b373fc44bcb /src/xterm.c | |
parent | 454fd6b4efc3e85b51967ae8c84e6bc1670854a7 (diff) | |
download | emacs-bc4e60fc842855d91b46080ba133dba2213a2d21.tar.gz |
(x_term_init): Use turn_on_atimers, not start_polling and stop_polling.
Diffstat (limited to 'src/xterm.c')
-rw-r--r-- | src/xterm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xterm.c b/src/xterm.c index eef2eb15976..c96eec56bf1 100644 --- a/src/xterm.c +++ b/src/xterm.c @@ -14805,12 +14805,12 @@ x_term_init (display_name, xrm_option, resource_name) argv[argc++] = "-xrm"; argv[argc++] = xrm_option; } - stop_polling (); + turn_on_atimers (0); dpy = XtOpenDisplay (Xt_app_con, SDATA (display_name), resource_name, EMACS_CLASS, emacs_options, XtNumber (emacs_options), &argc, argv); - start_polling (); + turn_on_atimers (1); #ifdef HAVE_X11XTR6 /* I think this is to compensate for XtSetLanguageProc. */ |