From: Richard M. Stallman Date: Mon, 19 Jun 1995 18:30:06 +0000 (+0000) Subject: (Fx_create_frame): Fix last arg to x_get_arg for Qdisplay. X-Git-Tag: emacs-19.34~3543 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=714812eb9a9aac4cd2a37c54aafe4431627008f0;p=emacs.git (Fx_create_frame): Fix last arg to x_get_arg for Qdisplay. --- diff --git a/src/xfns.c b/src/xfns.c index b87bf6480d0..44336bf175c 100644 --- a/src/xfns.c +++ b/src/xfns.c @@ -2860,7 +2860,7 @@ This function is an internal primitive--use `make-frame' instead.") until we know if this frame has a specified name. */ Vx_resource_name = Vinvocation_name; - display = x_get_arg (parms, Qdisplay, 0, 0, 0); + display = x_get_arg (parms, Qdisplay, 0, 0, string); if (EQ (display, Qunbound)) display = Qnil; dpyinfo = check_x_display_info (display);