comparison src/xterm.c @ 7100:3aaa031a8fe4

(x_term_init): Add explicit cast.
author Karl Heuer <kwzh@gnu.org>
date Mon, 25 Apr 1994 22:32:24 +0000
parents b5844ebba56f
children e7afa8046b41
comparison
equal deleted inserted replaced
7099:59c3c3a1b571 7100:3aaa031a8fe4
5911 argc = 5; 5911 argc = 5;
5912 Xt_app_shell = XtAppInitialize (&Xt_app_con, "Emacs", 5912 Xt_app_shell = XtAppInitialize (&Xt_app_con, "Emacs",
5913 emacs_options, XtNumber (emacs_options), 5913 emacs_options, XtNumber (emacs_options),
5914 &argc, argv, 5914 &argc, argv,
5915 NULL, NULL, 0); 5915 NULL, NULL, 0);
5916 XtFree (argv); 5916 XtFree ((char *)argv);
5917 x_current_display = XtDisplay (Xt_app_shell); 5917 x_current_display = XtDisplay (Xt_app_shell);
5918 5918
5919 #else /* not USE_X_TOOLKIT */ 5919 #else /* not USE_X_TOOLKIT */
5920 x_current_display = XOpenDisplay (display_name); 5920 x_current_display = XOpenDisplay (display_name);
5921 #endif /* not USE_X_TOOLKIT */ 5921 #endif /* not USE_X_TOOLKIT */